1use thiserror::Error; 2 3#[derive(Debug, Error)] 4pub enum AutomataError { 5 #[error("{0}")] 6 Internal(String), 7 #[error("{0}")] 8 Platform(String), 9 #[error("cancelled")] 10 Cancelled, 11}