Files
mayan-edms/mayan/apps/documents/exceptions.py
Roberto Rosario a1a0a6da52 PEP8 Cleanups.
2015-10-28 02:14:48 -04:00

16 lines
272 B
Python

from __future__ import unicode_literals
class DocumentException(Exception):
"""
Base documents warning
"""
pass
class NewDocumentVersionNotAllowed(DocumentException):
"""
Uploading new versions for this document is not allowed
"""
pass