]> git.donarmstrong.com Git - dak.git/blobdiff - daklib/dak_exceptions.py
Use Package-List to look for NEW binaries.
[dak.git] / daklib / dak_exceptions.py
old mode 100755 (executable)
new mode 100644 (file)
index d18bee1..ef24fd7
@@ -58,7 +58,11 @@ dakerrors = {
     "NoFreeFilenameError": """Exception raised when no alternate filename was found.""",
     "TransitionsError":    """Exception raised when transitions file can't be parsed.""",
     "NoSourceFieldError":  """Exception raised - we cant find the source - wtf?""",
-    "DBUpdateError":       """Exception raised - could not update the database"""
+    "MissingContents":     """Exception raised - we could not determine contents for this deb""",
+    "DBUpdateError":       """Exception raised - could not update the database""",
+    "ChangesUnicodeError": """Exception raised - changes file not properly utf-8 encoded""",
+    "AlreadyLockedError":  """Exception raised - package already locked by someone else""",
+    "CantGetLockError":    """Exception raised - lockfile already in use"""
 } #: All dak exceptions
 
 def construct_dak_exception(name, description):