sso_ui_jwt/ticket/
error.rs

1//! Ticket validation errors.
2
3/// Types of errors that could happen in ticket validation.
4#[derive(Debug)]
5pub enum ValidateTicketError {
6    /// Failed ticket authentication.
7    AuthenticationFailed,
8    /// Errors regarding the validation request.
9    RequestError,
10    /// Error parsing the XML response.
11    XMLParsingError,
12}