Source code for rest_easy.exceptions

"""
This module contains exceptions native to django-rest-easy.
"""

__all__ = ['RestEasyException']


[docs]class RestEasyException(Exception): """ Default django-rest-easy exception class. """