Ejemplo n.º 1
0
 def ThrowsError(self):
     raise DBusError('test.error', 'something went wrong')
Ejemplo n.º 2
0
 def throws_dbus_error(self):
     assert type(self) is AsyncInterface
     raise DBusError('test.error', 'an error ocurred')
Ejemplo n.º 3
0
 def ErrorThrowingProperty(self, val: 's'):
     raise DBusError(self.error_name, self.error_text)
Ejemplo n.º 4
0
 def ErrorThrowingProperty(self) -> 's':
     raise DBusError(self.error_name, self.error_text)
Ejemplo n.º 5
0
 def throws_error(self, val: 's'):
     raise DBusError('test.error', 'told you so')
Ejemplo n.º 6
0
 def throws_error(self) -> 's':
     raise DBusError('test.error', 'told you so')