summaryrefslogtreecommitdiffstats
path: root/src/debputy/manifest_parser/exceptions.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/debputy/manifest_parser/exceptions.py')
-rw-r--r--src/debputy/manifest_parser/exceptions.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/debputy/manifest_parser/exceptions.py b/src/debputy/manifest_parser/exceptions.py
new file mode 100644
index 0000000..671ec1b
--- /dev/null
+++ b/src/debputy/manifest_parser/exceptions.py
@@ -0,0 +1,9 @@
+from debputy.exceptions import DebputyRuntimeError
+
+
+class ManifestParseException(DebputyRuntimeError):
+ pass
+
+
+class ManifestTypeException(ManifestParseException):
+ pass