mirror of
https://git.kernel.org/pub/scm/network/wireless/iwd.git
synced 2025-02-18 09:10:38 +01:00
auto-t: add NotConfigured dbus exception
This commit is contained in:
parent
3b6d7e94f8
commit
774cfba1c4
@ -49,6 +49,7 @@ class NotFoundEx(dbus.DBusException): pass
|
|||||||
class NotSupportedEx(dbus.DBusException): pass
|
class NotSupportedEx(dbus.DBusException): pass
|
||||||
class NoAgentEx(dbus.DBusException): pass
|
class NoAgentEx(dbus.DBusException): pass
|
||||||
class NotConnectedEx(dbus.DBusException): pass
|
class NotConnectedEx(dbus.DBusException): pass
|
||||||
|
class NotConfiguredEx(dbus.DBusException): pass
|
||||||
class NotImplementedEx(dbus.DBusException): pass
|
class NotImplementedEx(dbus.DBusException): pass
|
||||||
class CanceledEx(dbus.DBusException):
|
class CanceledEx(dbus.DBusException):
|
||||||
_dbus_error_name = 'net.connman.iwd.Error.Canceled'
|
_dbus_error_name = 'net.connman.iwd.Error.Canceled'
|
||||||
@ -66,6 +67,7 @@ _dbus_ex_to_py = {
|
|||||||
'NotSupported' : NotSupportedEx,
|
'NotSupported' : NotSupportedEx,
|
||||||
'NoAgent' : NoAgentEx,
|
'NoAgent' : NoAgentEx,
|
||||||
'NotConnected' : NotConnectedEx,
|
'NotConnected' : NotConnectedEx,
|
||||||
|
'NotConfigured' : NotConfiguredEx,
|
||||||
'NotImplemented' : NotImplementedEx,
|
'NotImplemented' : NotImplementedEx,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user