aboutsummaryrefslogtreecommitdiff
path: root/lockchain-core/src/errors.rs
diff options
context:
space:
mode:
Diffstat (limited to 'lockchain-core/src/errors.rs')
-rw-r--r--lockchain-core/src/errors.rs69
1 files changed, 0 insertions, 69 deletions
diff --git a/lockchain-core/src/errors.rs b/lockchain-core/src/errors.rs
deleted file mode 100644
index 4720031..0000000
--- a/lockchain-core/src/errors.rs
+++ /dev/null
@@ -1,69 +0,0 @@
-//! Common lockchain error handling
-//!
-//! When working with a lockchain vault or record set
-//! there are a lot of things that can go wrong.
-//!
-//! This module handles any generic failure condition
-//! and logic to escallate from one to the next, e.g.
-//! turning a `VaultAlreadyExists` failure to
-//! a `FailedInitialise`.
-
-use std::error;
-use std::fmt::{Display, Formatter, Result};
-// use serde::{Serialize, de::DeserializeOwned};
-
-/// A collection of common error codes that can be
-/// returned by lockchain API functions
-#[derive(Debug, Serialize, Deserialize)]
-pub enum Error {
- /// Provide an extended range for errors
- Extended {
- name: String,
- into: (),
- },
- /// Creating a vault where one already exists
- VaultAlreadyExists,
- /// When providing an invalid path
- InvalidPath,
- /// When providing an invalid name (unprintable characters, empty, etc)
- InvalidName,
- /// Provided crypto layer is lacking features or missing
- InvalidCryptoLayer,
- /// Failed to initialise cryptography module
- FailedCrypto,
- /// Failed the internal self-test
- FailedSelfTest,
- /// Failed loading a file or vault
- FailedLoading,
- /// Failed to initialise a module
- FailedInitalise,
- /// Failed to create a new record, entry or vault
- FailedCreation,
- /// An unknown error occured =/
- UnknownFailure,
- // #[hidden_docs]
- __NonExhaustive,
-}
-
-impl error::Error for Error {}
-
-impl Display for Error {
- fn fmt(&self, f: &mut Formatter) -> Result {
- write!(
- f,
- "{}",
- match self {
- Error::VaultAlreadyExists => "Vault already exists",
- Error::InvalidPath => "Path invalid",
- Error::InvalidName => "Name invalid",
- Error::InvalidCryptoLayer => "Cryptography layer incompatible",
- Error::FailedCrypto => "Failed cryptographic operation",
- Error::FailedSelfTest => "Failed self text",
- Error::FailedLoading => "Failed to load",
- Error::FailedInitalise => "Failed to initialise",
- Error::FailedCreation => "Failed to create",
- _ => "Unknown failure",
- }
- )
- }
-}