1use thiserror::Error; 2 3#[derive(Error, Debug)] 4pub enum SyncerError { 5 #[error("mkvs: method not supported")] 6 Unsupported, 7}