exceptions.py 374 B

12345678910111213141516
  1. """
  2. Exception types raised in web3's libraries.
  3. """
  4. class ValidationError(Exception):
  5. """
  6. Raised when something does not pass a validation check.
  7. """
  8. class MismatchedABI(ValidationError):
  9. """
  10. Raised when an ABI does not match with supplied parameters, or when an
  11. attempt is made to access a function/event that does not exist in the ABI.
  12. """