X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=a1%2Fexceptions.py;h=c76e9f2bc2df1c1d2b660c90ca1853bf00013a66;hb=ccb4a69e473cab6db7e8d52a04f9b4922528e24f;hp=1362b2ab60f987ed59ef5269849e7d6468096a81;hpb=91ae88989c82b08b9fb69a28f838d6b80681d953;p=ric-plt%2Fa1.git diff --git a/a1/exceptions.py b/a1/exceptions.py index 1362b2a..c76e9f2 100644 --- a/a1/exceptions.py +++ b/a1/exceptions.py @@ -19,6 +19,10 @@ Custom Exceptions """ +class CantDeleteNonEmptyType(BaseException): + """tried to delete a type that isn't empty""" + + class PolicyInstanceNotFound(BaseException): """a policy instance cannot be found""" @@ -29,15 +33,3 @@ class PolicyTypeNotFound(BaseException): class PolicyTypeAlreadyExists(BaseException): """a policy type already exists and replace not supported at this time""" - - -class MissingRmrString(BaseException): - pass - - -class MissingManifest(BaseException): - pass - - -class MissingRmrMapping(BaseException): - pass