X-Git-Url: https://osm.etsi.org/gitweb/?p=osm%2FN2VC.git;a=blobdiff_plain;f=n2vc%2Fexceptions.py;h=c8e8793dd8a65f18fed674bc80a7a300bb5a0963;hp=35962b2ba2fdef4b05626f056a3722a2d3d95718;hb=43c2e79e783aa65dba1234ae4c299944c5f1702e;hpb=2d413435b8530cf7b2c8e49cf8cf157679e72432 diff --git a/n2vc/exceptions.py b/n2vc/exceptions.py index 35962b2..c8e8793 100644 --- a/n2vc/exceptions.py +++ b/n2vc/exceptions.py @@ -40,10 +40,6 @@ class AuthenticationFailed(Exception): """The authentication for the specified user failed.""" -class InvalidCACertificate(Exception): - """The CA Certificate is not valid.""" - - class NotImplemented(Exception): """The method is not implemented.""" @@ -126,4 +122,3 @@ class N2VCInvalidCertificate(N2VCException): def __str__(self): return '<{}> Invalid certificate: {}'.format(type(self), super().__str__()) -