diff options
Diffstat (limited to 'app/Exceptions/ContextException.php')
| -rw-r--r-- | app/Exceptions/ContextException.php | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/app/Exceptions/ContextException.php b/app/Exceptions/ContextException.php new file mode 100644 index 000000000..357751b7c --- /dev/null +++ b/app/Exceptions/ContextException.php @@ -0,0 +1,10 @@ +<?php + +/** + * An exception raised when a context is invalid + */ +class FreshRSS_Context_Exception extends Exception { + public function __construct($message) { + parent::__construct($message); + } +} |
