19 lines
255 B
PHP
19 lines
255 B
PHP
|
<?php
|
||
|
/**
|
||
|
* Holds the base Exception class.
|
||
|
* @package Sakura
|
||
|
*/
|
||
|
|
||
|
namespace Sakura\Exceptions;
|
||
|
|
||
|
use Exception;
|
||
|
|
||
|
/**
|
||
|
* Base Exception class.
|
||
|
* @package Sakura
|
||
|
* @author Julian van de Groep <me@flash.moe>
|
||
|
*/
|
||
|
class BaseException extends Exception
|
||
|
{
|
||
|
}
|