1
0
mirror of https://github.com/dkmstr/openuds.git synced 2025-03-20 06:50:23 +03:00

Fixed missing inheritance for Proxmox Error classes

This commit is contained in:
Adolfo Gómez García 2024-07-03 02:26:02 +02:00
parent 06bc4cae4a
commit 65d7e81263
No known key found for this signature in database
GPG Key ID: DD1ABF20724CDA23

View File

@ -36,15 +36,15 @@ class ProxmoxError(exceptions.Error):
pass
class ProxmoxConnectionError(exceptions.RetryableError):
class ProxmoxConnectionError(ProxmoxError, exceptions.RetryableError):
pass
class ProxmoxAuthError(exceptions.FatalError):
class ProxmoxAuthError(ProxmoxError, exceptions.FatalError):
pass
class ProxmoxNotFound(exceptions.NotFoundError):
class ProxmoxNotFound(ProxmoxError, exceptions.NotFoundError):
pass