diff options
author | Rob Austein <sra@hactrn.net> | 2009-01-21 07:24:53 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2009-01-21 07:24:53 +0000 |
commit | 20c6ec811341d52fab3c4a2c203af0f83182379c (patch) | |
tree | d85323e226389fe5dbfbd8270415462942f89b05 /rpkid/rpki/exceptions.py | |
parent | 98fdc886e9b29d3be7b6c88996624acaf12a6dac (diff) |
Checkpoint while tracking down various whacky certificate expiration
and regeneration issues.
svn path=/rpkid/rootd.py; revision=2255
Diffstat (limited to 'rpkid/rpki/exceptions.py')
-rw-r--r-- | rpkid/rpki/exceptions.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/rpkid/rpki/exceptions.py b/rpkid/rpki/exceptions.py index 4c1183be..393700e6 100644 --- a/rpkid/rpki/exceptions.py +++ b/rpkid/rpki/exceptions.py @@ -77,6 +77,9 @@ class BadSender(RPKI_Exception): class ClassNameMismatch(RPKI_Exception): """class_name does not match child context.""" +class ClassNameUnknown(RPKI_Exception): + """Unknown class_name.""" + class SKIMismatch(RPKI_Exception): """SKI value in response does not match request.""" |