10 lines
229 B
Python
10 lines
229 B
Python
from __future__ import unicode_literals
|
|
|
|
|
|
class NewDocumentVersionNotAllowed(Exception):
|
|
"""
|
|
Uploading new versions for this document is not allowed
|
|
Current reasons: Document is in checked out state
|
|
"""
|
|
pass
|