I have read the following lines in one book, regarding Assertion:
"AssertionError is a subclass of Throwable, so it can be caught. But just
don�t do it! If you�re going to try to recover from something, it should be an exception.
******************************
To discourage you from trying to substitute an assertion for an exception, the AssertionError doesn�t provide access to the object that generated it. All you get is the
String message.
******************************* "
I am not able to understand the lines embedded in stars(*). Some one please explain this...???