Class AssertionException

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

class AssertionException
extends Error
Thrown when a condition asserted from an assert method of the Assert is not true.

See Also:
Assert

Constructor Index

 o AssertionException()
Constructs a AssertionException with no detail message.
 o AssertionException(String)
Constructs a ClassFormatError with the specified detail message.

Constructors

 o AssertionException
 public AssertionException()
Constructs a AssertionException with no detail message.

 o AssertionException
 public AssertionException(String s)
Constructs a ClassFormatError with the specified detail message.

Parameters:
s - The detail message.