add access-properties

This commit is contained in:
coderkun 2013-09-22 21:48:36 +02:00
commit 996a501f4f
2 changed files with 58 additions and 0 deletions

View file

@ -0,0 +1,51 @@
<?php
/**
* NRE
*
* @author coderkun <olli@coderkun.de>
* @copyright 2013 coderkun (http://www.coderkun.de)
* @license http://www.gnu.org/licenses/gpl.html
* @link http://www.coderkun.de/projects/nre
*/
namespace nre\exceptions;
/**
* Exception: Access denied.
*
* @author coderkun <olli@coderkun.de>
*/
class AccessDeniedException extends \nre\core\Exception
{
/**
* Error code
*
* @var int
*/
const CODE = 85;
/**
* Error message
*
* @var string
*/
const MESSAGE = 'access denied';
/**
* Consturct a new exception.
*/
function __construct()
{
parent::__construct(
self::MESSAGE,
self::CODE
);
}
}
?>