aboutsummaryrefslogtreecommitdiff
path: root/engine/classes/NotImplementedException.php
diff options
context:
space:
mode:
Diffstat (limited to 'engine/classes/NotImplementedException.php')
-rw-r--r--engine/classes/NotImplementedException.php10
1 files changed, 10 insertions, 0 deletions
diff --git a/engine/classes/NotImplementedException.php b/engine/classes/NotImplementedException.php
new file mode 100644
index 000000000..d1decf75c
--- /dev/null
+++ b/engine/classes/NotImplementedException.php
@@ -0,0 +1,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 {}