summaryrefslogtreecommitdiffstats
path: root/vendor/ipl/orm/src/Exception/ValueConversionException.php
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/ipl/orm/src/Exception/ValueConversionException.php')
-rw-r--r--vendor/ipl/orm/src/Exception/ValueConversionException.php12
1 files changed, 12 insertions, 0 deletions
diff --git a/vendor/ipl/orm/src/Exception/ValueConversionException.php b/vendor/ipl/orm/src/Exception/ValueConversionException.php
new file mode 100644
index 0000000..499d9f3
--- /dev/null
+++ b/vendor/ipl/orm/src/Exception/ValueConversionException.php
@@ -0,0 +1,12 @@
+<?php
+
+namespace ipl\Orm\Exception;
+
+use Exception;
+
+/**
+ * Exception thrown if values to be converted don't meet their constraints when reading or writing to the database
+ */
+class ValueConversionException extends Exception
+{
+}