Add generic initializationerror

This commit is contained in:
lash 2022-05-14 12:23:06 +00:00
parent 9f537ff569
commit f66f93d867
Signed by: lash
GPG Key ID: 21D2E7BB88C2A746
1 changed files with 6 additions and 1 deletions

View File

@ -11,13 +11,18 @@ class JSONRPCException(RPCException):
pass
class InitializationError(Exception):
"""Base error for errors occurring while processing settings
"""
pass
class ExecutionError(Exception):
"""Base error for transaction execution failures
"""
pass
class SignerMissingException(Exception):
class SignerMissingException(InitializationError):
"""Raised when attempting to retrieve a signer when none has been added
"""