public function __construct($message = "", $code = 500, Exception $previous = null) { if (empty($message)) { $message = \JText::_('LIB_FOF_FORM_ERR_COULD_NOT_LOAD_FROM_DATA'); } parent::__construct($message, $code, $previous); }
public function __construct($file = "", $code = 500, Exception $previous = null) { $message = \JText::sprintf('LIB_FOF_FORM_ERR_COULD_NOT_LOAD_FROM_FILE', $file); parent::__construct($message, $code, $previous); }