1use cw_controllers::AdminError; 2use thiserror::Error; 3 4#[derive(Error, Debug, PartialEq)] 5pub enum AppError { 6 #[error(transparent)] 7 Admin(#[from] AdminError), 8}