exception_handler_003.phpt   [plain text]


--TEST--
exception handler tests - 3
--FILE--
<?php

class test {

	function foo () {
		set_exception_handler(array($this, "bar"));
	}

	function bar($e) {
		var_dump(get_class($e)." thrown!");
	}
}

$a = new test;
$a->foo();
throw new Exception();

echo "Done\n";
?>
--EXPECTF--	
string(17) "Exception thrown!"