. * */ namespace OCA\News\Fetcher; class FetcherException extends \Exception { /** * Constructor * @param string $msg the error message */ public function __construct($msg){ parent::__construct($msg); } }