Update exceptions 52/8152/1
authorAdam Israel <adam.israel@canonical.com>
Tue, 12 Nov 2019 00:42:02 +0000 (16:42 -0800)
committerAdam Israel <adam.israel@canonical.com>
Tue, 12 Nov 2019 00:42:02 +0000 (16:42 -0800)
Add NotImplemented exception and fix flake8 issues (spacing)

Change-Id: I675ff7156084c41f1dc3b5ed4823f237e0835ad1
Signed-off-by: Adam Israel <adam.israel@canonical.com>
n2vc/exceptions.py

index fd4a3ce..a63d6f9 100644 (file)
@@ -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."""
+