diff options
author | Rob Austein <sra@hactrn.net> | 2008-04-06 19:02:32 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2008-04-06 19:02:32 +0000 |
commit | fc8fb08d155a9b30f04cc67ba351725ef4051881 (patch) | |
tree | 0fd1b8fd533372e5ea1fff3cf1050972074c8e48 /rpkid/rpki/exceptions.py | |
parent | ba42f709db891ab7590831ee88e504eb90f926b6 (diff) |
Checkpoint. TLS validation now working with POW/OpenSSL, with runtime
flag to disable throwing of exceptions on validation failures.
svn path=/rpkid/rpki/exceptions.py; revision=1626
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 5093d2a4..b514129b 100644 --- a/rpkid/rpki/exceptions.py +++ b/rpkid/rpki/exceptions.py @@ -87,3 +87,6 @@ class NotFound(Exception): class MustBePrefix(Exception): """Resource range cannot be expressed as a prefix.""" + +class TLSValidationError(Exception): + """TLS certificate validation error.""" |