1/// Errors from the PCS External API client. 2#[derive(Debug, thiserror::Error)] 3#[non_exhaustive] 4pub enum Error { 5 /// Connection or transport error. 6 #[error("External API error: {0}")] 7 External(String), 8}