summaryrefslogtreecommitdiff
path: root/tests/lang/throw_variation_001.phpt
blob: f71ef41ec75229d7cbee02b8de11ab91d486eccb (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