mirror of
https://github.com/Icinga/icingaweb2.git
synced 2026-06-14 19:10:12 -04:00
12 lines
228 B
PHP
12 lines
228 B
PHP
<?php
|
|
|
|
namespace Icinga\Security;
|
|
|
|
use Icinga\Exception\IcingaException;
|
|
|
|
/**
|
|
* Exception thrown when a caller does not have the permissions required to access a resource
|
|
*/
|
|
class SecurityException extends IcingaException
|
|
{
|
|
}
|