1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
use std::path::PathBuf;

use thiserror::Error;

#[derive(Debug, Error)]
#[non_exhaustive]
pub enum Error {
    #[error("openrr-apps: No ConfigPath is specified.")]
    NoConfigPath,
    #[error("openrr-apps: No command is specified.")]
    NoCommand,
    #[error("openrr-apps: Failed to parse {:?} as toml ({}).", .0, .1)]
    TomlParseFailure(PathBuf, #[source] toml::de::Error),
    #[error("openrr-apps: No File {:?} is found ({}).", .0, .1)]
    NoFile(PathBuf, #[source] std::io::Error),
    #[error("openrr-apps: No ParentDirectory {:?} is found.", .0)]
    NoParentDirectory(PathBuf),
    #[error("openrr-apps: No SpecifiedNode {:?} is found.", .0)]
    NoSpecifiedNode(String),
    #[error("openrr-apps: No {:?} plugin instance {:?} is found", kind, name)]
    NoPluginInstance { kind: String, name: String },
    #[error("openrr-apps: {}", .0)]
    DuplicateInstance(String),
    #[error("openrr-apps: Config {:?} requires ros feature.", .0)]
    ConfigRequireRos(String),
    #[error("openrr-apps: arci: {:?}", .0)]
    Urdf(#[from] urdf_rs::UrdfError),
    #[error("openrr-apps: arci: {:?}", .0)]
    Arci(#[from] arci::Error),
    #[error("openrr-apps: openrr-client: {:?}", .0)]
    OpenrrClient(#[from] openrr_client::Error),
    #[error("openrr-apps: openrr-command: {:?}", .0)]
    OpenrrCommand(#[from] openrr_command::Error),
}