blob: 3e0f933feb8dc922d6b99afffa9b7d3977197047 (
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 {}
|