mirror of
https://github.com/postgresml/pgcat.git
synced 2026-03-24 01:36:29 +00:00
14 lines
211 B
Rust
14 lines
211 B
Rust
/// Errors.
|
|
|
|
/// Various errors.
|
|
#[derive(Debug, PartialEq)]
|
|
pub enum Error {
|
|
SocketError,
|
|
ClientBadStartup,
|
|
ProtocolSyncError,
|
|
ServerError,
|
|
BadConfig,
|
|
AllServersDown,
|
|
ClientError,
|
|
}
|