mirror of
https://github.com/yuezk/GlobalProtect-openconnect.git
synced 2025-04-29 22:26:26 -04:00
12 lines
257 B
Rust
12 lines
257 B
Rust
use thiserror::Error;
|
|
|
|
#[derive(Error, Debug)]
|
|
pub enum PortalError {
|
|
#[error("Portal prelogin error: {0}")]
|
|
PreloginError(String),
|
|
#[error("Portal config error: {0}")]
|
|
ConfigError(String),
|
|
#[error("Gateway error: {0}")]
|
|
GatewayError(String),
|
|
}
|