-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b25a57c
commit 6c6280e
Showing
1 changed file
with
73 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
use serde::Serialize; | ||
|
||
/// Errors relating to the API backend. | ||
#[derive(Debug, thiserror::Error)] | ||
pub enum Error { | ||
/// Profile error. | ||
#[error(transparent)] | ||
Profile(#[from] radicle::profile::Error), | ||
|
||
/// Node database error. | ||
#[error(transparent)] | ||
Database(#[from] radicle::node::db::Error), | ||
|
||
/// Policy store error. | ||
#[error(transparent)] | ||
PolicyStore(#[from] radicle::node::policy::store::Error), | ||
|
||
#[error(transparent)] | ||
CobsCache(#[from] radicle::cob::cache::Error), | ||
|
||
/// Cob patch cache error. | ||
#[error(transparent)] | ||
CachePatch(#[from] radicle::cob::patch::cache::Error), | ||
|
||
/// Cob issue cache error. | ||
#[error(transparent)] | ||
CacheIssue(#[from] radicle::cob::issue::cache::Error), | ||
|
||
/// Repository error. | ||
#[error(transparent)] | ||
Repository(#[from] radicle::storage::RepositoryError), | ||
|
||
/// Project doc error. | ||
#[error(transparent)] | ||
ProjectDoc(#[from] radicle::identity::doc::PayloadError), | ||
|
||
/// Notification store error. | ||
#[error(transparent)] | ||
NotificationsStore(#[from] radicle::node::notifications::store::Error), | ||
|
||
/// Routing error. | ||
#[error(transparent)] | ||
Routing(#[from] radicle::node::routing::Error), | ||
|
||
/// Git2 error. | ||
#[error(transparent)] | ||
Git2(#[from] radicle::git::raw::Error), | ||
|
||
/// Storage refs error. | ||
#[error(transparent)] | ||
StorageRef(#[from] radicle::storage::refs::Error), | ||
|
||
/// Surf error. | ||
#[error(transparent)] | ||
Surf(#[from] radicle_surf::Error), | ||
|
||
/// Storage error. | ||
#[error(transparent)] | ||
Storage(#[from] radicle::storage::Error), | ||
|
||
/// Node error. | ||
#[error(transparent)] | ||
Node(#[from] radicle::node::Error), | ||
} | ||
|
||
impl Serialize for Error { | ||
fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error> | ||
where | ||
S: serde::ser::Serializer, | ||
{ | ||
serializer.serialize_str(self.to_string().as_ref()) | ||
} | ||
} |