mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 09:05:16 +01:00
20 lines
452 B
PHP
20 lines
452 B
PHP
|
<?php
|
||
|
|
||
|
/*
|
||
|
* Egroupware
|
||
|
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
|
||
|
* @package api
|
||
|
* @link http://www.egroupware.org
|
||
|
* @author Nathan Gray
|
||
|
* @version $Id$
|
||
|
*/
|
||
|
|
||
|
use EGroupware\Api;
|
||
|
|
||
|
/**
|
||
|
* User is no eGroupWare admin (no right to run the admin application)
|
||
|
*
|
||
|
* @deprecated use Api\Exception\NoPermission\Admin
|
||
|
*/
|
||
|
class egw_exception_no_permission_admin extends Api\Exception\NoPermission\Admin {}
|