// Copyright 2022 - Nym Technologies SA // SPDX-License-Identifier: Apache-2.0 use thiserror::Error; #[derive(Error, Debug)] pub enum StorageError { #[cfg(not(target_arch = "wasm32"))] #[error("Database experienced an internal error - {0}")] InternalDatabaseError(#[from] sqlx::Error), #[cfg(not(target_arch = "wasm32"))] #[error("Failed to perform database migration - {0}")] MigrationError(#[from] sqlx::migrate::MigrateError), #[error("Inconsistent data in database")] InconsistentData, #[error("No unused credential in database. You need to buy at least one")] NoCredential, }