9 lines
172 B
Rust
9 lines
172 B
Rust
|
use displaydoc::Display;
|
||
|
use thiserror::Error;
|
||
|
|
||
|
#[derive(Debug, Display, Error)]
|
||
|
pub enum Error {
|
||
|
/// specified path `{0}` is not a directory
|
||
|
PathNotDir(String),
|
||
|
}
|