blob: 3075f0b8ec400ee3765ee462d78c3c419dd51f20 (
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)
*
* @author Curverider Ltd <info@elgg.com>
* @package Elgg
* @subpackage Exceptions
*/
class SecurityException extends Exception {}
|