aboutsummaryrefslogtreecommitdiffstats
path: root/src/errors.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/errors.rs')
-rw-r--r--src/errors.rs6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/errors.rs b/src/errors.rs
new file mode 100644
index 0000000..d9e431b
--- /dev/null
+++ b/src/errors.rs
@@ -0,0 +1,6 @@
+error_chain! {
+ foreign_links {
+ Meetup(::meetup::Error);
+ Rss(::rss::Error);
+ }
+}