Initial commit

This commit is contained in:
wagiminator
2022-09-11 11:42:08 +02:00
parent 54d0f15ce8
commit 03e8a184a2
166 changed files with 86898 additions and 2 deletions

View File

@@ -0,0 +1,21 @@
"""
pyedbglib specific exceptions
"""
class PyedbglibError(Exception):
"""
Base class for all pyedbglib specific exceptions
"""
def __init__(self, msg=None, code=0):
super(PyedbglibError, self).__init__(msg)
self.code = code
class PyedbglibNotSupportedError(PyedbglibError):
"""
Signals that an attempted operation is not supported
"""
def __init__(self, msg=None, code=0):
super(PyedbglibNotSupportedError, self).__init__(msg)
self.code = code