mirror of
https://git.kernel.org/pub/scm/network/wireless/iwd.git
synced 2024-11-25 17:59:25 +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 NoAgentEx(dbus.DBusException): pass
|
||||
class NotConnectedEx(dbus.DBusException): pass
|
||||
class NotConfiguredEx(dbus.DBusException): pass
|
||||
class NotImplementedEx(dbus.DBusException): pass
|
||||
class CanceledEx(dbus.DBusException):
|
||||
_dbus_error_name = 'net.connman.iwd.Error.Canceled'
|
||||
@ -66,6 +67,7 @@ _dbus_ex_to_py = {
|
||||
'NotSupported' : NotSupportedEx,
|
||||
'NoAgent' : NoAgentEx,
|
||||
'NotConnected' : NotConnectedEx,
|
||||
'NotConfigured' : NotConfiguredEx,
|
||||
'NotImplemented' : NotImplementedEx,
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user