Extend the exception test.
所有检测均成功
The build was successful.

这个提交包含在:
Rafal Kupiec 2019-06-05 08:23:13 +02:00
父节点 4267bb2f26
当前提交 3715b1b53d
签署人:: belliash
GPG 密钥 ID: 4E829243E0CFE6B4
共有 2 个文件被更改,包括 17 次插入4 次删除

查看文件

@ -20,6 +20,11 @@ class Program {
ExceptionHandler::handleException($e);
};
set_exception_handler($handler);
try {
print("Called try block 0\n");
} finally {
print("Called finally block 0\n");
}
try {
throw new NewException("Catch me once", 1);
} catch(Exception $e) {
@ -27,9 +32,12 @@ class Program {
} finally {
print("Called finally block 1\n");
}
throw new Exception("Catch me twice", 2);
try {
throw new NewException("Catch me twice", 2);
} finally {
print("Called finally block 2\n");
}
throw new Exception("Catch me thrice", 3);
}
}

查看文件

@ -1,5 +1,10 @@
Called try block 0
Called finally block 0
Uncaught NewException, code: 1
Message: Catch me once
Called finally block 1
Uncaught Exception, code: 2
Called finally block 2
Uncaught NewException, code: 2
Message: Catch me twice
Uncaught Exception, code: 3
Message: Catch me thrice