13 lines
193 B
Python
13 lines
193 B
Python
from __future__ import unicode_literals
|
|
|
|
|
|
class QuotaBaseException(Exception):
|
|
"""
|
|
Base exception for the quota app
|
|
"""
|
|
pass
|
|
|
|
|
|
class QuotaExceeded(QuotaBaseException):
|
|
pass
|