diff options
author | Rob Austein <sra@hactrn.net> | 2014-07-15 19:34:32 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2014-07-15 19:34:32 +0000 |
commit | a35ce7f496890d47b2c116efb15da992b7622d40 (patch) | |
tree | 94bfeac62f94f5769b0bb0ce18611c2b5132271b /rpki/exceptions.py | |
parent | 5d343deb9a0f5c437fa05642f59d4a31f67ea798 (diff) | |
parent | b3a6a36b0ba3fbe7dd4d5bc5ddf98a36b6f87a56 (diff) |
Checkpoint. Merge changes from trunk. Add hash-based withdrawal
checks and <list/> command to publication protocol.
svn path=/branches/tk705/; revision=5896
Diffstat (limited to 'rpki/exceptions.py')
-rw-r--r-- | rpki/exceptions.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/rpki/exceptions.py b/rpki/exceptions.py index 504c6f28..86c7fa27 100644 --- a/rpki/exceptions.py +++ b/rpki/exceptions.py @@ -288,6 +288,16 @@ class NoObjectAtURI(RPKI_Exception): No object published at specified URI. """ +class ExistingObjectAtURI(RPKI_Exception): + """ + An object has already been published at specified URI. + """ + +class DifferentObjectAtURI(RPKI_Exception): + """ + An object with a different hash exists at specified URI. + """ + class CMSContentNotSet(RPKI_Exception): """ Inner content of a CMS_object has not been set. If object is known |