openrr_gui/
error.rs

1use thiserror::Error;
2
3#[derive(Error, Debug)]
4#[non_exhaustive]
5pub enum Error {
6    #[error("openrr-gui: arci: {}", .0)]
7    Arci(#[from] arci::Error),
8    #[error("openrr-gui: other: {}", .0)]
9    Other(String),
10}