mirror of
https://github.com/laurivosandi/certidude
synced 2024-11-04 20:38:12 +00:00
16 lines
261 B
Python
16 lines
261 B
Python
|
|
class RequestExists(Exception):
|
|
pass
|
|
|
|
class RequestDoesNotExist(Exception):
|
|
pass
|
|
|
|
class FatalError(Exception):
|
|
"""
|
|
Exception to be raised when user intervention is required
|
|
"""
|
|
pass
|
|
|
|
class DuplicateCommonNameError(FatalError):
|
|
pass
|