1use thiserror::Error; 2 3#[derive(Debug, Error)] 4pub enum LspError { 5 #[error("protocol error: {0}")] 6 Protocol(String), 7}