Source code for alysis._exceptions
[docs]
class ValidationError(Exception):
"""Invalid values of some of the arguments."""
[docs]
class BlockNotFound(Exception):
"""Requested block cannot be found."""
[docs]
class TransactionNotFound(Exception):
"""Requested transaction cannot be found."""
class IndexNotFound(Exception):
"""Requested index is outside of the available range."""
[docs]
class FilterNotFound(Exception):
"""Requested filter cannot be found."""
[docs]
class TransactionFailed(Exception):
"""Transaction could not be executed."""
[docs]
class TransactionReverted(Exception):
"""Transaction was partially executed, but had to be reverted."""