13 lines
340 B
PHP
13 lines
340 B
PHP
|
<?php
|
||
|
/*****************************************************************************
|
||
|
* NotAllowedException.php
|
||
|
* Contains exception class NotAllowedException.
|
||
|
*
|
||
|
* Kabuki CMS (C) 2013-2015, Aaron van Geffen
|
||
|
*****************************************************************************/
|
||
|
|
||
|
class NotAllowedException extends Exception
|
||
|
{
|
||
|
|
||
|
}
|