minesweeper
Class AssertionException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--java.lang.RuntimeException
                    |
                    +--minesweeper.AssertionException
All Implemented Interfaces:
Serializable

public class AssertionException
extends RuntimeException

The exception thrown when an assertion is violated.

See Also:
Serialized Form

Fields inherited from class java.lang.Throwable
backtrace, detailMessage, serialVersionUID
 
Constructor Summary
AssertionException()
          Constructs an AssertionException with no detail message.
AssertionException(String strMessage)
          Constructs an AssertionException with the specified detail message.
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, getMessage, printStackTrace, printStackTrace, printStackTrace, printStackTrace0, toString
 
Methods inherited from class java.lang.Object
, clone, equals, finalize, getClass, hashCode, notify, notifyAll, registerNatives, wait, wait, wait
 

Constructor Detail

AssertionException

public AssertionException()
Constructs an AssertionException with no detail message.

AssertionException

public AssertionException(String strMessage)
Constructs an AssertionException with the specified detail message.