arbos/l2_pricing/
error.rs

1use arb_storage::StorageError;
2
3/// Errors raised by the L2 pricing subsystem.
4#[derive(Clone, thiserror::Error, Debug)]
5pub enum L2PricingError {
6    /// Underlying storage failure.
7    #[error(transparent)]
8    Storage(#[from] StorageError),
9}