Enum jsonrpsee_core::error::Error
source · pub enum Error {
Show 20 variants
Call(ErrorObjectOwned),
Transport(Error),
InvalidResponse(Mismatch<String>),
RestartNeeded(String),
ParseError(Error),
InvalidSubscriptionId,
InvalidRequestId(InvalidRequestId),
UnregisteredNotification(String),
DuplicateRequestId,
MethodAlreadyRegistered(String),
MethodNotFound(String),
SubscriptionNameConflict(String),
RequestTimeout,
MaxSlotsExceeded,
AlreadyStopped,
EmptyAllowList(&'static str),
HttpHeaderRejected(&'static str, String),
Custom(String),
HttpNotImplemented,
EmptyBatchRequest,
}
Expand description
Error type.
Variants§
Call(ErrorObjectOwned)
JSON-RPC error which can occur when a JSON-RPC call fails.
Transport(Error)
Networking error or error on the low-level protocol layer.
InvalidResponse(Mismatch<String>)
Invalid response,
RestartNeeded(String)
The background task has been terminated.
ParseError(Error)
Failed to parse the data.
InvalidSubscriptionId
Invalid subscription ID.
InvalidRequestId(InvalidRequestId)
Invalid request ID.
UnregisteredNotification(String)
Client received a notification with an unregistered method
DuplicateRequestId
A request with the same request ID has already been registered.
MethodAlreadyRegistered(String)
Method was already registered.
MethodNotFound(String)
Method with that name has not yet been registered.
SubscriptionNameConflict(String)
Subscribe and unsubscribe method names are the same.
RequestTimeout
Request timeout
MaxSlotsExceeded
Configured max number of request slots exceeded.
AlreadyStopped
Attempted to stop server that is already stopped.
EmptyAllowList(&'static str)
List passed into access control based on HTTP header verification.
HttpHeaderRejected(&'static str, String)
Access control verification of HTTP headers failed.
Custom(String)
Custom error.
HttpNotImplemented
Not implemented for HTTP clients.
EmptyBatchRequest
Empty batch request.