Class AssertionException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--AssertionException

public class AssertionException
extends java.lang.Exception

All Exception classes look like this. You define your own exception class to distinguish your exceptions from any other kind. The implementation consists of a default constructor, and a constructor that takes a simple message string as an argument. Both constructors call super() to ensure that the instance is properly initialized.

Version:
1.0 1998-11-25
Author:
Oscar.Nierstrasz@acm.org
See Also:
Exception, Serialized Form

Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, getMessage, printStackTrace, printStackTrace, printStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait