blob: 3b6382f9efd2a14e044f238833da9d653af7bd3d (
plain)
1
2
3
4
5
6
7
8
9
10
|
<?php
/**
* SecurityException
* An Security Exception, throw when a Security Exception occurs. Subclass for
* specific Security Execeptions (access problems etc)
*
* @package Elgg.Core
* @subpackage Exception
*/
class SecurityException extends Exception {}
|