Skip to main content

sandbox_quant/error/
storage_error.rs

1use thiserror::Error;
2
3#[derive(Debug, Error, Clone, PartialEq, Eq)]
4pub enum StorageError {
5    #[error("write failed")]
6    WriteFailed,
7}