1/// Errors returned by ACP server-side actor operations. 2#[derive(Debug, thiserror::Error)] 3pub enum AcpServerError { 4 #[error("ACP actor stopped")] 5 ActorStopped, 6 7 #[error("ACP protocol error: {0}")] 8 Protocol(String), 9}