blob: bf7f7c779e46362db4d48172c392b2e8f589be5e [file] [log] [blame]
CONSOLE MESSAGE: line 67: inner exception
CONSOLE MESSAGE: line 69: outer exception
Checks that $exception is the value of the current exception, even in nested catch blocks.
BEFORE : $exception => undefined
OUTER 1: $exception => outer exception
INNER 1: $exception => inner exception
INNER 2: $exception => inner exception
CATCH: $exception === e2 ? true
OUTER 2: $exception => outer exception
CATCH: $exception === e1 ? true
AFTER : $exception => undefined