blob: f95c88c473c59f22e539ff06be058f46e9c45a56 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<?php
/**
* NotImplementedException
* Thrown when a method or function has not been implemented, primarily used in development... you should
* not see these!
*
* @author Curverider Ltd <info@elgg.com>
* @package Elgg
* @subpackage Exceptions
*/
class NotImplementedException extends CallException {}
|