17 lines
262 B
PHP
17 lines
262 B
PHP
|
<?php
|
||
|
/**
|
||
|
* Holds an exception class.
|
||
|
* @package Sakura
|
||
|
*/
|
||
|
|
||
|
namespace Sakura\Exceptions;
|
||
|
|
||
|
/**
|
||
|
* Thrown when the config failed to parse.
|
||
|
* @package Sakura
|
||
|
* @author Julian van de Groep <me@flash.moe>
|
||
|
*/
|
||
|
class ConfigParseException extends BaseException
|
||
|
{
|
||
|
}
|