summaryrefslogtreecommitdiff
path: root/meta/jsonobject/exceptions.py
diff options
context:
space:
mode:
Diffstat (limited to 'meta/jsonobject/exceptions.py')
-rw-r--r--meta/jsonobject/exceptions.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/meta/jsonobject/exceptions.py b/meta/jsonobject/exceptions.py
new file mode 100644
index 0000000000..a42022e120
--- /dev/null
+++ b/meta/jsonobject/exceptions.py
@@ -0,0 +1,10 @@
+class DeleteNotAllowed(Exception):
+ pass
+
+
+class BadValueError(Exception):
+ """raised when a value can't be validated or is required"""
+
+
+class WrappingAttributeError(AttributeError):
+ pass