auto-t: add NotConfigured dbus exception

This commit is contained in:
Tim Kourt 2017-10-26 13:26:00 -07:00 committed by Denis Kenzior
parent 3b6d7e94f8
commit 774cfba1c4
1 changed files with 2 additions and 0 deletions

View File

@ -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,
}