01: package uk.org.ponder.util;
02:
03: /** A runtime exception to be used when an assertion fails.
04: */
05:
06: public class AssertionException extends RuntimeException {
07: /** Constructs a new AssertionException with the specified detail message.
08: * @param s The detail message for the exception.
09: */
10: public AssertionException(String s) {
11: super(s);
12: }
13: }
|