bvs-pauser 2.4.0

SatLayer Bitcoin Validated Service
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use cosmwasm_std::StdError;
use thiserror::Error;

#[derive(Error, Debug)]
pub enum PauserError {
    #[error("{0}")]
    Std(#[from] StdError),

    #[error("{0}")]
    Ownership(#[from] bvs_library::ownership::OwnershipError),

    #[error("Unauthorized")]
    Unauthorized {},
}