Extend the exception test.
All checks were successful
The build was successful.

This commit is contained in:
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