From: Adam Israel Date: Tue, 12 Nov 2019 00:42:02 +0000 (-0800) Subject: Update exceptions X-Git-Tag: v7.0.0rc1~21 X-Git-Url: https://osm.etsi.org/gitweb/?p=osm%2FN2VC.git;a=commitdiff_plain;h=d238b03584451451ffcea345ffc5d02c657003bd;hp=fbac7c59fe1c3bbfefc070ca8b7f719cf0fd626a Update exceptions Add NotImplemented exception and fix flake8 issues (spacing) Change-Id: I675ff7156084c41f1dc3b5ed4823f237e0835ad1 Signed-off-by: Adam Israel --- diff --git a/n2vc/exceptions.py b/n2vc/exceptions.py index fd4a3ce..a63d6f9 100644 --- a/n2vc/exceptions.py +++ b/n2vc/exceptions.py @@ -39,5 +39,11 @@ class NoRouteToHost(Exception): class AuthenticationFailed(Exception): """The authentication for the specified user failed.""" + class InvalidCACertificate(Exception): - """The CA Certificate is not valid.""" \ No newline at end of file + """The CA Certificate is not valid.""" + + +class NotImplemented(Exception): + """The method is not implemented.""" +