summaryrefslogtreecommitdiff
path: root/app/Exceptions/OpmlException.php
diff options
context:
space:
mode:
Diffstat (limited to 'app/Exceptions/OpmlException.php')
-rw-r--r--app/Exceptions/OpmlException.php6
1 files changed, 6 insertions, 0 deletions
diff --git a/app/Exceptions/OpmlException.php b/app/Exceptions/OpmlException.php
new file mode 100644
index 000000000..e0ea3e493
--- /dev/null
+++ b/app/Exceptions/OpmlException.php
@@ -0,0 +1,6 @@
+<?php
+class FreshRSS_Opml_Exception extends FreshRSS_Feed_Exception {
+ public function __construct ($name_file) {
+ parent::__construct ('OPML file is invalid');
+ }
+}