Initial commit adding document checkout support

This commit is contained in:
Roberto Rosario
2012-06-11 01:25:02 -04:00
parent d0c8f23dfe
commit 8ff727c50b
16 changed files with 525 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
class DocumentNotCheckedOut(Exception):
"""
Raised when trying to checkin a document that is not checkedout
"""
pass
class DocumentAlreadyCheckedOut(Exception):
"""
Raised when trying to checkout an already checkedout document
"""
pass