1use thiserror::Error; 2 3#[derive(Debug, Error)] 4pub enum BorderAsyncTrainerError { 5 #[error("Error")] 6 SendMsgForPush, 7}