cardinal-errors 0.2.41

Shared error types for the Cardinal gateway stack
Documentation
1
2
3
4
5
6
7
8
use serde::{Deserialize, Serialize};
use thiserror::Error;

#[derive(Serialize, Deserialize, Error, Debug)]
pub enum CardinalProxyError {
    #[error("The URL is wrongly constructed")]
    BadUrl(String),
}