How can i convert one object to another. Convert Exception object to MyException Object.

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



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


[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux