Okay, its a very lame questions for many, hope I will have overwhelming response :)
When I throw an Exception I need to add a code and a message (in PHP).
I catch an exception and handle it according to its type (Like InvalidArgumentException or OutOfBoundException etc). I log the message or display it or do whatever is suitable.
I can add also append previous exception to trace a path to the origin of exception.
BUT one thing I have never used or never thought of how it is useful is code
For example:
throw new Exception("db Error", $code, $previousException);
What do I do with $code?
throw new Exception( "db Error", $code, $previousException );– Craig Sefton May 3 '11 at 11:36