zola/src/errors.rs

14 lines
247 B
Rust
Raw Normal View History

2016-12-06 05:51:33 +00:00
error_chain! {
foreign_links {
Io(::std::io::Error);
}
errors {
FolderExists(name: String) {
description("folder already exists")
display("Folder '{}' already exists.", name)
}
}
}