* @author Bernhard Posselt * @copyright 2012 Alessandro Cosentino * @copyright 2012-2014 Bernhard Posselt */ namespace OCA\News\Service; class ServiceException extends \Exception { /** * Constructor * * @param string $msg the error message */ public function __construct($msg) { parent::__construct($msg); } }