18 lines
450 B
PHP
18 lines
450 B
PHP
<?php
|
|
/**
|
|
* Exception handler for the Horde_Perms package.
|
|
*
|
|
* Copyright 2009-2017 Horde LLC (http://www.horde.org/)
|
|
*
|
|
* See the enclosed file COPYING for license information (LGPL). If you
|
|
* did not receive this file, see http://www.horde.org/licenses/lgpl21.
|
|
*
|
|
* @author Michael Slusarz <slusarz@horde.org>
|
|
* @category Horde
|
|
* @package Perms
|
|
*/
|
|
class Horde_Perms_Exception extends Horde_Exception_Wrapped
|
|
{
|
|
const NOT_EXIST = 1;
|
|
}
|