update : 2015.11.03
php.shukuma.com

검색:
 
 
Exception

Exception

(PHP 5 >= 5.1.0)

소개

Exception 은 모든 오류 예외의 기초 클래스 입니다.

클래스 개요

Exception {
/* 프로퍼티 */
protected string $message ;
protected int $code ;
protected string $file ;
protected int $line ;
/* 메소드 */
public __construct ([ string $message = "" [, int $code = 0 [, Exception $previous = NULL ]]] )
final public string getMessage ( void )
final public Exception getPrevious ( void )
final public mixed getCode ( void )
final public string getFile ( void )
final public int getLine ( void )
final public array getTrace ( void )
final public string getTraceAsString ( void )
public string __toString ( void )
final private void __clone ( void )
}

프로퍼티

message

예외 메시지

code

예외 코드

file

예외가 만들어진 파일명

line

예외가 만들어진 라인

Table of Contents