error.py 298 B

123456789101112131415161718
  1. #
  2. # This file is part of pyasn1 software.
  3. #
  4. # Copyright (c) 2005-2017, Ilya Etingof <etingof@gmail.com>
  5. # License: http://pyasn1.sf.net/license.html
  6. #
  7. class PyAsn1Error(Exception):
  8. pass
  9. class ValueConstraintError(PyAsn1Error):
  10. pass
  11. class SubstrateUnderrunError(PyAsn1Error):
  12. pass