mirror of
https://github.com/postgresml/pgcat.git
synced 2026-03-23 09:26:30 +00:00
18 lines
318 B
Rust
18 lines
318 B
Rust
/// Errors.
|
|
|
|
/// Various errors.
|
|
#[derive(Debug, PartialEq)]
|
|
pub enum Error {
|
|
SocketError(String),
|
|
ClientBadStartup,
|
|
ProtocolSyncError(String),
|
|
ServerError,
|
|
BadConfig,
|
|
AllServersDown,
|
|
ClientError(String),
|
|
TlsError,
|
|
StatementTimeout,
|
|
ShuttingDown,
|
|
ParseBytesError(String),
|
|
}
|