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