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."""
[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."""