Beispiel #1
0
 /**
  * wrapper for the {@link raise()} method where you do not have to specify the
  * error level - a {@link patError} object with error level E_NOTICE will be returned.
  *
  * @static
  * @access	public
  * @param	string	$code	The application-internal error code for this error
  * @param	string	$msg	The error message, which may also be shown the user if need be.
  * @param	mixed	$info	Optional: Additional error information (usually only developer-relevant information that the user should never see, like a database DSN).
  * @return	object	$error	The configured patError object
  * @see		raise()
  * @see		patError
  */
 function &raiseNotice($code, $msg, $info = null)
 {
     return patErrorManager::raise(E_NOTICE, $code, $msg, $info);
 }