Source code for thorn.exceptions

"""

    thorn.exceptions
    ================

    Thorn-related exceptions.

"""
from __future__ import absolute_import, unicode_literals


[docs]class ThornError(Exception): pass
[docs]class ImproperlyConfigured(ThornError): pass
[docs]class SecurityError(ThornError): pass