This commit is contained in:
Gregory Schier
2025-07-02 07:47:36 -07:00
parent fa62f88fa4
commit ff26cc1344
5 changed files with 11 additions and 12 deletions

View File

@@ -20,7 +20,7 @@ pub enum Error {
#[error("Model error: {0}")]
GenericError(String),
#[error("DB Migration Failed: {0}")]
MigrationError(String),
@@ -30,9 +30,6 @@ pub enum Error {
#[error("Multiple base environments for {0}. Delete duplicates before continuing.")]
MultipleBaseEnvironments(String),
#[error("Database row not found: {0}")]
DBRowNotFound(String),
#[error("unknown error")]
Unknown,
}