X-Git-Url: https://osm.etsi.org/gitweb/?p=osm%2FN2VC.git;a=blobdiff_plain;f=n2vc%2Fexceptions.py;h=59bcc1adbaf262040ea6b6d7dd4d5f860b370554;hp=c8e8793dd8a65f18fed674bc80a7a300bb5a0963;hb=b95133489d1cd16e1692085b1193d24d52c858fc;hpb=9e5eddb16371662937cb1bfb216ff5d155eb861f diff --git a/n2vc/exceptions.py b/n2vc/exceptions.py index c8e8793..59bcc1a 100644 --- a/n2vc/exceptions.py +++ b/n2vc/exceptions.py @@ -12,14 +12,35 @@ # See the License for the specific language governing permissions and # limitations under the License. + class JujuCharmNotFound(Exception): """The Charm can't be found or is not readable.""" +class JujuControllerFailedConnecting(Exception): + """Failed connecting to juju controller.""" + + +class JujuModelAlreadyExists(Exception): + """The model already exists.""" + + class JujuApplicationExists(Exception): """The Application already exists.""" +class JujuApplicationNotFound(Exception): + """The Application cannot be found.""" + + +class JujuMachineNotFound(Exception): + """The machine cannot be found.""" + + +class JujuK8sProxycharmNotSupported(Exception): + """K8s Proxy Charms not supported in this installation.""" + + class N2VCPrimitiveExecutionFailed(Exception): """Something failed while attempting to execute a primitive.""" @@ -40,7 +61,7 @@ class AuthenticationFailed(Exception): """The authentication for the specified user failed.""" -class NotImplemented(Exception): +class MethodNotImplemented(Exception): """The method is not implemented.""" @@ -49,7 +70,7 @@ class N2VCException(Exception): N2VC exception base class """ - def __init__(self, message: str = ''): + def __init__(self, message: str = ""): Exception.__init__(self, message) self.message = message @@ -57,7 +78,7 @@ class N2VCException(Exception): return self.message def __repr__(self): - return '{}({})'.format(type(self), self.message) + return "{}({})".format(type(self), self.message) class N2VCBadArgumentsException(N2VCException): @@ -65,12 +86,14 @@ class N2VCBadArgumentsException(N2VCException): Bad argument values exception """ - def __init__(self, message: str = '', bad_args: list = None): + def __init__(self, message: str = "", bad_args: list = None): N2VCException.__init__(self, message=message) self.bad_args = bad_args def __str__(self): - return '<{}> Bad arguments: {} -> {}'.format(type(self), super().__str__(), self.bad_args) + return "<{}> Bad arguments: {} -> {}".format( + type(self), super().__str__(), self.bad_args + ) class N2VCConnectionException(N2VCException): @@ -78,12 +101,14 @@ class N2VCConnectionException(N2VCException): Error connecting to VCA """ - def __init__(self, message: str = '', url: str = None): + def __init__(self, message: str = "", url: str = None): N2VCException.__init__(self, message=message) self.url = url def __str__(self): - return '<{}> Connection to {} failed: {}'.format(type(self), self.url, super().__str__()) + return "<{}> Connection to {} failed: {}".format( + type(self), self.url, super().__str__() + ) class N2VCTimeoutException(N2VCException): @@ -91,12 +116,12 @@ class N2VCTimeoutException(N2VCException): Timeout """ - def __init__(self, message: str = '', timeout: str = ''): + def __init__(self, message: str = "", timeout: str = ""): N2VCException.__init__(self, message=message) self.timeout = timeout def __str__(self): - return '<{}> {} timeout: {}'.format(type(self), self.timeout, super().__str__()) + return "<{}> {} timeout: {}".format(type(self), self.timeout, super().__str__()) class N2VCExecutionException(N2VCException): @@ -104,12 +129,14 @@ class N2VCExecutionException(N2VCException): Error executing primitive """ - def __init__(self, message: str = '', primitive_name: str = ''): + def __init__(self, message: str = "", primitive_name: str = ""): N2VCException.__init__(self, message=message) self.primitive_name = primitive_name def __str__(self): - return '<{}> Error executing primitive {} failed: {}'.format(type(self), self.primitive_name, super().__str__()) + return "<{}> Error executing primitive {} failed: {}".format( + type(self), self.primitive_name, super().__str__() + ) class N2VCInvalidCertificate(N2VCException): @@ -117,8 +144,40 @@ class N2VCInvalidCertificate(N2VCException): Invalid certificate """ - def __init__(self, message: str = ''): + def __init__(self, message: str = ""): N2VCException.__init__(self, message=message) def __str__(self): - return '<{}> Invalid certificate: {}'.format(type(self), super().__str__()) + return "<{}> Invalid certificate: {}".format(type(self), super().__str__()) + + +class N2VCNotFound(N2VCException): + """ + Not found + """ + + def __init__(self, message: str = ""): + N2VCException.__init__(self, message=message) + + def __str__(self): + return "<{}> Not found: {}".format(type(self), super().__str__()) + + +class K8sException(Exception): + """ + K8s exception + """ + + def __init__(self, message: str): + Exception.__init__(self, message) + self._message = message + + def __str__(self): + return self._message + + def __repr__(self): + return self._message + + +class EntityInvalidException(Exception): + """Entity is not valid, the type does not match any EntityType."""