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