You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
416B

  1. error_chain! {
  2. foreign_links {
  3. Io(::std::io::Error);
  4. }
  5. errors {
  6. InvalidConfig {
  7. description("invalid config")
  8. display("The config.toml is invalid or is using the wrong type for an argument")
  9. }
  10. FolderExists(name: String) {
  11. description("folder already exists")
  12. display("Folder '{}' already exists.", name)
  13. }
  14. }
  15. }