CloudBender/cloudbender/exceptions.py

19 lines
317 B
Python
Raw Permalink Normal View History

2019-06-27 13:31:51 +00:00
class ParameterNotFound(Exception):
"""My documentation"""
2019-07-03 13:15:18 +00:00
class ParameterIllegalValue(Exception):
"""My documentation"""
class InvalidProjectDir(Exception):
"""My documentation"""
class InvalidHook(Exception):
"""My documentation"""
class ChecksumError(Exception):
"""My documentation"""