Exception

(PHP 5, PHP 7, PHP 8)


소개

Exception는 모든 사용자 예외의 기본 클래스입니다.


클래스 개요

                  
class Exception implements Throwable {
  /* Properties */
  protected string $message;
  protected int $code;
  protected string $file;
  protected int $line;
  /* Methods */
  public __construct(string $message = "", int $code = 0, ?Throwable $previous = null)
  final public getMessage(): string
  final public getPrevious(): ?Throwable
  final public getCode(): int
  final public getFile(): string
  final public getLine(): int
  final public getTrace(): array
  final public getTraceAsString(): string
  public __toString(): string
  final private __clone(): void
}
                  
                

속성(Properties)

message
예외 메시지
code
예외 코드
file
예외가 생성된 파일 이름
line
예외가 생성된 라인

목차