OXIESEC PANEL
- Current Dir:
/
/
usr
/
lib
/
python3
/
dist-packages
/
uaclient
/
api
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
10/28/2024 08:41:34 AM
rwxr-xr-x
📄
__init__.py
2.26 KB
08/08/2024 02:00:59 PM
rw-r--r--
📁
__pycache__
-
10/28/2024 08:41:34 AM
rwxr-xr-x
📄
api.py
5.49 KB
08/08/2024 08:21:51 PM
rw-r--r--
📄
data_types.py
1.91 KB
08/08/2024 02:00:59 PM
rw-r--r--
📄
errors.py
1.96 KB
08/08/2024 02:00:59 PM
rw-r--r--
📄
exceptions.py
1.45 KB
08/08/2024 08:21:51 PM
rw-r--r--
📁
u
-
10/28/2024 08:41:34 AM
rwxr-xr-x
Editing: exceptions.py
Close
from uaclient import messages from uaclient.api.errors import APIError from uaclient.exceptions import ( AlreadyAttachedError, ConnectivityError, ContractAPIError, EntitlementNotDisabledError, EntitlementNotEnabledError, EntitlementNotFoundError, EntitlementsNotEnabledError, IncompatibleServiceStopsEnable, InvalidProImage, LockHeldError, MagicAttachTokenAlreadyActivated, MagicAttachTokenError, MagicAttachUnavailable, NonAutoAttachImageError, NonRootUserError, RequiredServiceStopsEnable, UbuntuProError, UnattachedError, UrlError, UserFacingError, ) __all__ = [ "AlreadyAttachedError", "ConnectivityError", "ContractAPIError", "EntitlementNotFoundError", "InvalidProImage", "LockHeldError", "MagicAttachTokenAlreadyActivated", "MagicAttachTokenError", "MagicAttachUnavailable", "NonAutoAttachImageError", "NonRootUserError", "UbuntuProError", "UnattachedError", "UrlError", "UserFacingError", "EntitlementsNotEnabledError", "EntitlementNotEnabledError", "EntitlementNotDisabledError", "IncompatibleServiceStopsEnable", "RequiredServiceStopsEnable", ] class AutoAttachDisabledError(UbuntuProError): _msg = messages.E_AUTO_ATTACH_DISABLED_ERROR class UnattendedUpgradesError(APIError): _formatted_msg = messages.E_UNATTENDED_UPGRADES_ERROR class NotSupported(UbuntuProError): _msg = messages.E_NOT_SUPPORTED