blob: 39e5a280348ee13b34b4b7caa83e95ea45f0df55 (
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 {}
|