Hello there,

I am trying to convert one object to another, something like clone.

For example.
---
class MyException extends Exception {
        // My functions etc.. etc..     
}

function ExceptionHandler($exception) {
        // Convert an NoN MyException to an MyException????
}

set_exception_handler('ExceptionHandler');
---

Then when i do a:
throw new Exception('My Message', 1);

And i don't catch it my self, it will get into the ExceptionHandler.
Now i have some special methods within MyException to handle stuff.
And i want to copy/convert the $exception (Exception) object to a MyException object to use its methods.

Thx in advanced.

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to