| |
"AliasError.InvalidAlias"
|
| |
}
|
| |
Error::FileTooLarge(_) => "PayloadError.TooLarge",
|
| + |
Error::DialogClosed => "DialogError.Closed",
|
| + |
Error::NoIrohProviders { .. } => "ArtifactError.NoProviders",
|
| + |
Error::ReleaseNotFound { .. } => "ReleaseError.NotFound",
|
| + |
Error::ArtifactNotInRelease { .. } => "ReleaseError.ArtifactNotFound",
|
| + |
Error::CidMismatch { .. } => "ArtifactError.CidMismatch",
|
| + |
Error::MalformedIrohKey { .. } => "IrohError.MalformedKey",
|
| + |
Error::ReleaseRedact(radicle_artifact::error::Redact::NotFound { .. }) => {
|
| + |
"ReleaseError.ArtifactNotFound"
|
| + |
}
|
| + |
Error::ReleaseRedact(radicle_artifact::error::Redact::ReasonTooLong { .. }) => {
|
| + |
"ReleaseError.RedactionReasonTooLong"
|
| + |
}
|
| + |
Error::ReleaseCreate(radicle_artifact::error::Create::MissingTag { .. }) => {
|
| + |
"ReleaseError.MissingTag"
|
| + |
}
|
| + |
Error::ReleaseCreate(radicle_artifact::error::Create::TagMismatch { .. }) => {
|
| + |
"ReleaseError.TagMismatch"
|
| + |
}
|
| + |
Error::ReleaseCreate(radicle_artifact::error::Create::PeelFailed { .. }) => {
|
| + |
"ReleaseError.TagPeelFailed"
|
| + |
}
|
| |
_ => "UnknownError",
|
| |
}
|
| |
}
|