summaryrefslogtreecommitdiffstats
path: root/tests/082-inline-execute/src/junit/framework/AssertionFailedError.java
blob: e9cb3a3856917211907959f1365ce0368774c916 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package junit.framework;

/**
 * Thrown when an assertion failed.
 */
public class AssertionFailedError extends Error {

    public AssertionFailedError () {
    }
    public AssertionFailedError (String message) {
        super (message);
    }
}