mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-01-24 21:27:56 -05:00
- Context object raises correct Exception if get is invalid - RSS feed is well-indicated on the home page - State is better calculated - Add some comments See https://github.com/marienfressinaud/FreshRSS/issues/634
11 lines
196 B
PHP
11 lines
196 B
PHP
<?php
|
|
|
|
/**
|
|
* An exception raised when a context is invalid
|
|
*/
|
|
class FreshRSS_Context_Exception extends Exception {
|
|
public function __construct($message) {
|
|
parent::__construct($message);
|
|
}
|
|
}
|