16 lines
222 B
PHP
16 lines
222 B
PHP
<?php
|
|
/**
|
|
* Holds the Exception class.
|
|
* @package Sakura
|
|
*/
|
|
|
|
namespace Sakura;
|
|
|
|
/**
|
|
* Sakura Exception class.
|
|
* @package Sakura
|
|
* @author Julian van de Groep <me@flash.moe>
|
|
*/
|
|
class Exception extends \Exception
|
|
{
|
|
}
|