--TEST-- Make sure exceptions during include/require stating are properly propagated --FILE-- getMessage(), "\n"; } try { require 'doesnt_exist.php'; } catch (Exception $e) { echo $e->getMessage(), "\n"; } try { include_once 'doesnt_exist.php'; } catch (Exception $e) { echo $e->getMessage(), "\n"; } try { include 'doesnt_exist.php'; } catch (Exception $e) { echo $e->getMessage(), "\n"; } ?> --EXPECT-- stat failed stat failed stat failed stat failed