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.

20 lines
337B

  1. use tera;
  2. error_chain! {
  3. links {
  4. Tera(tera::Error, tera::ErrorKind);
  5. }
  6. foreign_links {
  7. Io(::std::io::Error);
  8. }
  9. errors {
  10. InvalidConfig {
  11. description("invalid config")
  12. display("The config.toml is invalid or is using the wrong type for an argument")
  13. }
  14. }
  15. }