summaryrefslogtreecommitdiff
path: root/python/exceptions.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/exceptions.py')
-rw-r--r--python/exceptions.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/python/exceptions.py b/python/exceptions.py
new file mode 100644
index 00000000..cb285253
--- /dev/null
+++ b/python/exceptions.py
@@ -0,0 +1,7 @@
+class RelocationWriteException(Exception):
+ """ Exception raised when a relocation fails to apply """
+ pass
+
+class ILException(Exception):
+ """ Exception raised when IL operations fail """
+ pass