mirror of
https://gitlab.com/veilid/veilid.git
synced 2025-08-14 17:35:57 -04:00
add eartly build
This commit is contained in:
parent
5122fd8ebd
commit
8e20228529
21 changed files with 1390 additions and 0 deletions
18
scripts/earthly/secretsd/secretsd/exception.py
Normal file
18
scripts/earthly/secretsd/secretsd/exception.py
Normal file
|
@ -0,0 +1,18 @@
|
|||
import dbus
|
||||
|
||||
class InvalidArgsException(dbus.DBusException):
|
||||
_dbus_error_name = "org.freedesktop.DBus.Error.InvalidArgs"
|
||||
|
||||
class NotYetImplementedException(dbus.DBusException):
|
||||
_dbus_error_name = "org.freedesktop.DBus.Error.NotSupported"
|
||||
def __init__(self):
|
||||
super().__init__("TODO: Not implemented")
|
||||
|
||||
class IsLockedException(dbus.DBusException):
|
||||
_dbus_error_name = "org.freedesktop.Secret.Error.IsLocked"
|
||||
|
||||
class NoSessionException(dbus.DBusException):
|
||||
_dbus_error_name = "org.freedesktop.Secret.Error.NoSession"
|
||||
|
||||
class NoSuchObjectException(dbus.DBusException):
|
||||
_dbus_error_name = "org.freedesktop.Secret.Error.NoSuchObject"
|
Loading…
Add table
Add a link
Reference in a new issue