Exception
은 모든 예외의 기본 클래스입니다. 클래스 요약은 다음과 같습니다.
<code><?php class 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 int 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) }</code>
ErrorException
은 오류 예외이며, 수업 요약은 다음과 같습니다.
<code><?php class ErrorException extends Exception { protected int $severity; // 异常级别 public __construct([string $message = "" [, int $code = 0 [, int $severity = 1 [, string $filename = __FILE__ [, int $lineno = __LINE__ [, Exception $previous = NULL]]]]]]) final public int getSeverity(void) }</code>
(전문 종료)
위 내용은 사전 정의된 예외 사항을 소개합니다 - 관련 내용을 포함하여 PHP 매뉴얼 노트가 PHP 튜토리얼에 관심이 있는 친구들에게 도움이 되기를 바랍니다.