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
from n2vc.n2vc_conn import obj_to_dict, obj_to_yaml
from n2vc.exceptions \
import N2VCBadArgumentsException, N2VCException, N2VCConnectionException, \
- N2VCExecutionException, N2VCInvalidCertificate
+ N2VCExecutionException, N2VCInvalidCertificate, N2VCNotFound
from n2vc.juju_observer import JujuModelObserver
from juju.controller import Controller
model = await self._juju_get_model(model_name=model_name)
if not model:
- raise N2VCException(
+ raise N2VCNotFound(
message="Model {} does not exist".format(model_name)
)