pgdo/runtime/
error.rs

1use crate::version;
2
3#[derive(thiserror::Error, miette::Diagnostic, Debug)]
4pub enum RuntimeError {
5    #[error("Input/output error")]
6    IoError(#[from] std::io::Error),
7    #[error(transparent)]
8    VersionError(#[from] version::VersionError),
9}