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.

14 lines
247B

  1. error_chain! {
  2. foreign_links {
  3. Io(::std::io::Error);
  4. }
  5. errors {
  6. FolderExists(name: String) {
  7. description("folder already exists")
  8. display("Folder '{}' already exists.", name)
  9. }
  10. }
  11. }