예제 #1
0
파일: FormLoadData.php 프로젝트: Joal01/fof
 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);
 }
예제 #2
0
파일: FormLoadFile.php 프로젝트: akeeba/fof
 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);
 }