diff --git a/gpoa/util/exceptions.py b/gpoa/util/exceptions.py index 47899ed..982b28a 100644 --- a/gpoa/util/exceptions.py +++ b/gpoa/util/exceptions.py @@ -46,3 +46,10 @@ class NotUNCPathError(Exception): def __str__(self): return self.path +class GetGPOListFail(Exception): + def __init__(self, exc): + self.exc = exc + + def __str__(self): + return self.exc +