cant http://us3.php.net/manual/en/function.set-exception-handler.php be used ?
<?php
function exception_handler($e) {
//mail('to', 'exception', $e->getMessage());
}
set_exception_handler('exception_handler');
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

