zoukankan      html  css  js  c++  java
  • 预定义异常

    Exception是所有异常的基类,类摘要如下:

    <?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)
    }
    

    ErrorException是错误异常,类摘要如下:

    <?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)
    }
    

    (全文完)

  • 相关阅读:
    C#深入浅出 修饰符(二)
    HDU 5785 Interesting
    HDU 5783 Divide the Sequence
    HDU 5781 ATM Mechine
    UVA 714 Copying Books
    uva 1471 Defense Lines
    UVA 11134 Fabled Rooks
    UVA 11572 Unique Snowflakes
    UVA 11093 Just Finish it up
    UVA 10954 Add All
  • 原文地址:https://www.cnblogs.com/sintune/p/php-reserved-exceptions.html
Copyright © 2011-2022 走看看