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