2007. 03. 28, szerda keltezéssel 08.55-kor Mathijs ezt írta:
> 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);
why not use
throw new MyException('My Message', 1);
and then you don't have to convert it
greets
Zoltán Németh
>
> 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