1
2
3
4
5
6
7
8
9
10
//! Errors implementation for the security module.

/// Errors for the security module.
#[odra::odra_error]
pub enum Error {
    /// Contract needs to be paused first.
    PausedRequired = 21_000,
    /// Contract needs to be unpaused first.
    UnpausedRequired = 21_001
}