commit-bridge 0.1.0

Seamless workflow dispatch for remote git dependencies.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Error types for repository operation failures.

/// An error in a repository.
#[derive(thiserror::Error, Debug)]
pub enum RepositoryError {
    /// Requested resource not found.
    #[error("Resource not found")]
    NotFound,

    /// Database operation error.
    #[error("Database error: {0}")]
    Database(#[from] sqlx::Error),

    /// Data mapping error.
    #[error("Data mapping error: {0}")]
    Mapping(String),
}