summaryrefslogtreecommitdiffstats
path: root/python/exceptions.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/exceptions.py')
-rw-r--r--python/exceptions.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/python/exceptions.py b/python/exceptions.py
index b9df8150..5cb8d5a3 100644
--- a/python/exceptions.py
+++ b/python/exceptions.py
@@ -15,6 +15,10 @@ class ValidationException(DBusException):
def __init__(self, msg=''):
DBusException.__init__(self, "Error validating string: %s"%msg)
+class IntrospectionParserException(DBusException):
+ def __init__(self, msg=''):
+ DBusException.__init__(self, "Error parsing introspect data: %s"%msg)
+
class UnknownMethodException(DBusException):
def __init__(self, msg=''):
DBusException.__init__("Unknown method: %s"%msg)