30 lines
2.9 KiB
Rust
30 lines
2.9 KiB
Rust
// file: crates/ksp-onchain-transport-lib/src/error.rs
|
|
// version: 3
|
|
|
|
/// Error code used when no logical endpoint can satisfy a request.
|
|
pub const ERROR_CODE_ENDPOINT_SELECTION_FAILED: ksp_core_lib::ErrorCode = ksp_core_lib::ErrorCode::new("onchain_transport", "endpoint_selection_failed");
|
|
/// Error code used when an HTTP connection cannot be established.
|
|
pub const ERROR_CODE_HTTP_CONNECTION_FAILED: ksp_core_lib::ErrorCode = ksp_core_lib::ErrorCode::new("onchain_transport", "http_connection_failed");
|
|
/// Error code used when an HTTP request fails after a connection exists.
|
|
pub const ERROR_CODE_HTTP_REQUEST_FAILED: ksp_core_lib::ErrorCode = ksp_core_lib::ErrorCode::new("onchain_transport", "http_request_failed");
|
|
/// Error code used when a decoded response cannot satisfy the KSP transport contract expected by the caller.
|
|
pub const ERROR_CODE_INVALID_RESPONSE: ksp_core_lib::ErrorCode = ksp_core_lib::ErrorCode::new("onchain_transport", "invalid_response");
|
|
/// Error code used when typed Solana RPC parameters violate a locally enforceable method contract.
|
|
pub const ERROR_CODE_INVALID_RPC_PARAMETERS: ksp_core_lib::ErrorCode = ksp_core_lib::ErrorCode::new("onchain_transport", "invalid_rpc_parameters");
|
|
/// Error code used when HTTP transport runtime settings are invalid.
|
|
pub const ERROR_CODE_INVALID_SETTINGS: ksp_core_lib::ErrorCode = ksp_core_lib::ErrorCode::new("onchain_transport", "invalid_settings");
|
|
/// Error code used when an HTTP JSON-RPC payload cannot be decoded as JSON.
|
|
pub const ERROR_CODE_JSON_DECODE_FAILED: ksp_core_lib::ErrorCode = ksp_core_lib::ErrorCode::new("onchain_transport", "json_decode_failed");
|
|
/// Error code used when a JSON-RPC request cannot be encoded.
|
|
pub const ERROR_CODE_JSON_ENCODE_FAILED: ksp_core_lib::ErrorCode = ksp_core_lib::ErrorCode::new("onchain_transport", "json_encode_failed");
|
|
/// Error code used when a decoded JSON-RPC envelope violates protocol invariants.
|
|
pub const ERROR_CODE_JSON_RPC_PROTOCOL_INVALID: ksp_core_lib::ErrorCode = ksp_core_lib::ErrorCode::new("onchain_transport", "json_rpc_protocol_invalid");
|
|
/// Error code used when a historically documented RPC method is no longer supported by the targeted runtime.
|
|
pub const ERROR_CODE_METHOD_REMOVED: ksp_core_lib::ErrorCode = ksp_core_lib::ErrorCode::new("onchain_transport", "method_removed");
|
|
/// Error code used when an endpoint or provider rate-limits a request.
|
|
pub const ERROR_CODE_RATE_LIMITED: ksp_core_lib::ErrorCode = ksp_core_lib::ErrorCode::new("onchain_transport", "rate_limited");
|
|
/// Error code used when a remote JSON-RPC endpoint returns an application-level RPC error.
|
|
pub const ERROR_CODE_RPC_APPLICATION_ERROR: ksp_core_lib::ErrorCode = ksp_core_lib::ErrorCode::new("onchain_transport", "rpc_application_error");
|
|
/// Error code used when a transport deadline expires.
|
|
pub const ERROR_CODE_TIMEOUT: ksp_core_lib::ErrorCode = ksp_core_lib::ErrorCode::new("onchain_transport", "timeout");
|