25 lines
761 B
Rust
25 lines
761 B
Rust
// Copyright 2022 - Nym Technologies SA <contact@nymtech.net>
|
|
// 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,
|
|
|
|
#[error("Database unique constraint violation. Is the credential already imported?")]
|
|
ConstraintUnique,
|
|
}
|