exceptions.py 229 B

1234567
  1. # This exposes the eth-utils exception for backwards compatibility,
  2. # for any library that catches eth_keys.exceptions.ValidationError
  3. from eth_utils import ValidationError # noqa: F401
  4. class BadSignature(Exception):
  5. pass