folder mostly done, types (partially) stubbed out.

This commit is contained in:
2021-12-20 04:02:48 -05:00
parent d76746d79e
commit 8ab14af06c
11 changed files with 605 additions and 35 deletions

View File

@@ -17,4 +17,10 @@ var (
ErrOperationFailed is a generic failure message that will occur of a Dbus operation returns non-success.
*/
ErrOperationFailed error = errors.New("a Dbus operation has failed to execute successfully")
/*
ErrNoCreate is triggered if attempting to create an item (Folder, Password, etc.) but it fails.
*/
ErrNoCreate error = errors.New("failed to create an object")
// ErrNoDisconnect can occur if trying to disconnect a Wallet from a WalletManager/application and a failure occurs.
ErrNoDisconnect error = errors.New("failed to disconnect wallet from application")
)