update : 2015.11.03
php.shukuma.com

검색:
 
 
ErrorException

ErrorException

(PHP 5 >= 5.1.0)

소개

오류 예외.

클래스 개요

ErrorException extends Exception {
/* 프로퍼티 */
protected int $severity ;
/* 상속된 프로퍼티 */
protected string $message ;
protected int $code ;
protected string $file ;
protected int $line ;
/* 메소드 */
public __construct ([ string $message = "" [, int $code = 0 [, int $severity = 1 [, string $filename = __FILE__ [, int $lineno = __LINE__ [, Exception $previous = NULL ]]]]]] )
final public int getSeverity ( void )
/* 상속된 메소드 */
final public string Exception::getMessage ( void )
final public Exception Exception::getPrevious ( void )
final public mixed Exception::getCode ( void )
final public string Exception::getFile ( void )
final public int Exception::getLine ( void )
final public array Exception::getTrace ( void )
final public string Exception::getTraceAsString ( void )
public string Exception::__toString ( void )
final private void Exception::__clone ( void )
}

프로퍼티

심각도

예외의 심각도

예제

Example #1 set_error_handler() 을 사용하면 ErrorException 의 오류 메시지를 변경할 수 있습니다.

<?php
function exception_error_handler($severity$message$file$line) {
    if (!(
error_reporting() & $severity)) {
        
// This error code is not included in error_reporting
        
return;
    }
    throw new 
ErrorException($message0$severity$file$line);
}
set_error_handler("exception_error_handler");

/* 예외 발생 */
strpos();
?>

위 예제의 출력 예시:

Fatal error: Uncaught exception 'ErrorException' with message 'Wrong parameter count for strpos()' in /home/bjori/tmp/ex.php:8
Stack trace:
#0 [internal function]: exception_error_handler(2, 'Wrong parameter...', '/home/bjori/php...', 8, Array)
#1 /home/bjori/php/cleandocs/test.php(8): strpos()
#2 {main}
  thrown in /home/bjori/tmp/ex.php on line 8

Table of Contents