X-Git-Url: https://osm.etsi.org/gitweb/?p=osm%2FN2VC.git;a=blobdiff_plain;f=n2vc%2Fexceptions.py;h=256860edfb92be5489f7f06533401e20668a3896;hp=061cd7a335e94f5b0f5772c982b8182480418474;hb=2c791b34626ff76ab1886a110599998f9de0df80;hpb=4fee80e46dff88732b7927e502007203fcd8a15c diff --git a/n2vc/exceptions.py b/n2vc/exceptions.py index 061cd7a..256860e 100644 --- a/n2vc/exceptions.py +++ b/n2vc/exceptions.py @@ -33,10 +33,22 @@ class JujuApplicationNotFound(Exception): """The Application cannot be found.""" +class JujuLeaderUnitNotFound(Exception): + """The Application cannot be found.""" + + +class JujuActionNotFound(Exception): + """The Action 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."""