1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
use serde::Deserialize;

use super::http::Response;

#[derive(Debug, Deserialize)]
pub struct StandardBodyError {
    pub error: String,
    pub error_description: String,
}

#[derive(Debug)]
pub struct OidcClientError {
    pub name: String,
    pub error: String,
    pub error_description: String,
    pub response: Option<Response>,
}

impl OidcClientError {
    pub fn new(
        name: &str,
        error: &str,
        error_description: &str,
        response: Option<Response>,
    ) -> Self {
        Self {
            name: name.to_string(),
            error: error.to_string(),
            error_description: error_description.to_string(),
            response,
        }
    }
}