summaryrefslogtreecommitdiff
path: root/pyasn1/error.py
blob: 85308557b3527d557153834704461679d6a8420d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#
# This file is part of pyasn1 software.
#
# Copyright (c) 2005-2017, Ilya Etingof <etingof@gmail.com>
# License: http://pyasn1.sf.net/license.html
#


class PyAsn1Error(Exception):
    pass


class ValueConstraintError(PyAsn1Error):
    pass


class SubstrateUnderrunError(PyAsn1Error):
    pass