在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
try {
} catch (Exception $ex) {
// 计算错误
} catch (Throwable $ex) {
// 语法错误,致命错误
}
Throwable {
/* Methods */
abstract public string getMessage ( void )
abstract public int getCode ( void )
abstract public string getFile ( void )
abstract public int getLine ( void )
abstract public array getTrace ( void )
abstract public string getTraceAsString ( void )
abstract public Throwable getPrevious ( void )
abstract public string __toString ( void )
}
Throwable 是一个接口,Error 类和Exception 类都继承 Throwable 接口。
Error 就是用于语法错误和致命错误的捕捉的。
|
2022-07-18
2022-08-16
2022-11-06
2022-08-18
2022-08-15