blob: d942a87930970741e39ed4469108b9f63a231991 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
--TEST--
Catching an exception thrown from an included file
--FILE--
<?php
try {
include "inc_throw.inc";
} catch (Exception $e) {
echo "caught exception\n";
}
?>
--EXPECT--
caught exception
|