mirror of
https://github.com/fafhrd91/actix-web
synced 2024-11-24 16:32:59 +01:00
21 lines
634 B
Rust
21 lines
634 B
Rust
|
pub use actix_http::error::*;
|
||
|
use derive_more::{Display, From};
|
||
|
use url::ParseError as UrlParseError;
|
||
|
|
||
|
/// Errors which can occur when attempting to generate resource uri.
|
||
|
#[derive(Debug, PartialEq, Display, From)]
|
||
|
pub enum UrlGenerationError {
|
||
|
/// Resource not found
|
||
|
#[display(fmt = "Resource not found")]
|
||
|
ResourceNotFound,
|
||
|
/// Not all path pattern covered
|
||
|
#[display(fmt = "Not all path pattern covered")]
|
||
|
NotEnoughElements,
|
||
|
/// URL parse error
|
||
|
#[display(fmt = "{}", _0)]
|
||
|
ParseError(UrlParseError),
|
||
|
}
|
||
|
|
||
|
/// `InternalServerError` for `UrlGeneratorError`
|
||
|
impl ResponseError for UrlGenerationError {}
|