Files
mayan-edms/mayan/apps/quotas/exceptions.py
2017-08-02 04:10:55 -04:00

13 lines
193 B
Python

from __future__ import unicode_literals
class QuotaBaseException(Exception):
"""
Base exception for the quota app
"""
pass
class QuotaExceeded(QuotaBaseException):
pass