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