16 lines
258 B
PHP
16 lines
258 B
PHP
<?php
|
|
/**
|
|
* Holds an exception class.
|
|
* @package Sakura
|
|
*/
|
|
|
|
namespace Sakura\Exceptions;
|
|
|
|
/**
|
|
* Thrown when the config file doesn't exist.
|
|
* @package Sakura
|
|
* @author Julian van de Groep <me@flash.moe>
|
|
*/
|
|
class FileException extends BaseException
|
|
{
|
|
}
|