solana_feature_gate_program/
error.rs

1//! Program error types
2
3use spl_program_error::*;
4
5/// Program specific errors
6#[spl_program_error]
7pub enum FeatureGateError {
8    /// Feature already activated
9    #[error("Feature already activated")]
10    FeatureAlreadyActivated,
11}