Skip to main content

infinispan_fork/
errors.rs

1use thiserror::Error;
2
3#[derive(Error, Debug)]
4pub enum InfinispanError {
5    #[error("error while sending the request to Infinispan")]
6    Connection(#[from] reqwest::Error),
7}