aboutsummaryrefslogtreecommitdiff
path: root/engine
diff options
context:
space:
mode:
authoricewing <icewing@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-04-11 10:56:00 +0000
committericewing <icewing@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-04-11 10:56:00 +0000
commit894b88f1102fa0dc43b2ac1035bf0af285b54f76 (patch)
tree197cb8bb1d8954fbdf85562d93b71a1d66e39175 /engine
parent5796de5158bd39a1d9c15404db7ccb8445ce72b6 (diff)
downloadelgg-894b88f1102fa0dc43b2ac1035bf0af285b54f76.tar.gz
elgg-894b88f1102fa0dc43b2ac1035bf0af285b54f76.tar.bz2
Marcus Povey <marcus@dushka.co.uk>
* Added DataFormatException git-svn-id: https://code.elgg.org/elgg/trunk@433 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine')
-rw-r--r--engine/lib/exceptions.php10
1 files changed, 10 insertions, 0 deletions
diff --git a/engine/lib/exceptions.php b/engine/lib/exceptions.php
index e797f85bc..de18f9b7e 100644
--- a/engine/lib/exceptions.php
+++ b/engine/lib/exceptions.php
@@ -83,6 +83,16 @@
*/
class CallException extends Exception {}
+ /**
+ * Data format exception
+ * An exception thrown when there is a problem in the format of some data.
+ *
+ * @author Marcus Povey <marcus@dushka.co.uk>
+ * @package Elgg
+ * @subpackage Exceptions
+ */
+ class DataFormatException extends Exception {}
+
// Class exceptions ///////////////////////////////////////////////////////////////////////
/**