Some checks failed
Podman Rootless Demo / test-backend (push) Has been skipped
Podman Rootless Demo / test-frontend (push) Has been skipped
Podman Rootless Demo / build-backend (push) Has been skipped
Podman Rootless Demo / build-frontend (push) Failing after 5m32s
Podman Rootless Demo / deploy-prod (push) Has been skipped
10 lines
No EOL
233 B
Rust
10 lines
No EOL
233 B
Rust
use thiserror::Error;
|
|
|
|
#[derive(Error, Debug)]
|
|
pub enum ApplicationError {
|
|
#[error("Use case error: {0}")]
|
|
UseCaseError(String),
|
|
|
|
#[error("Domain error: {0}")]
|
|
DomainError(#[from] crate::domain::error::DomainError),
|
|
} |