You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
451 B
26 lines
451 B
"""EasyEngine exception classes."""
|
|
|
|
|
|
class EEError(Exception):
|
|
"""Generic errors."""
|
|
def __init__(self, msg):
|
|
Exception.__init__(self)
|
|
self.msg = msg
|
|
|
|
def __str__(self):
|
|
return self.msg
|
|
|
|
|
|
class EEConfigError(EEError):
|
|
"""Config related errors."""
|
|
pass
|
|
|
|
|
|
class EERuntimeError(EEError):
|
|
"""Generic runtime errors."""
|
|
pass
|
|
|
|
|
|
class EEArgumentError(EEError):
|
|
"""Argument related errors."""
|
|
pass
|
|
|