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:
parent
06bc4cae4a
commit
65d7e81263
@ -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
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user