<?php
// This test is to show a fatel error, display errors are turn off so some output will be shown

ini_set('display_errors', false);

require_once 'Exception/DefaultHandler.php';
register_shutdown_function(array('Exception_DefaultHandler','handleShutdown'));

// Force an error to occur
callFunctionThatDoesNotExist();
