1
0
mirror of https://github.com/altlinux/gpupdate.git synced 2024-10-26 15:25:08 +03:00

Added new exception GetGPOListFail

This commit is contained in:
Valery Sinelnikov 2024-02-21 14:57:22 +04:00
parent 47dc1df796
commit d83cf4d29d

View File

@ -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