1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package junit.framework;

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

    private static final long serialVersionUID= 1L;

    public AssertionFailedError() {
    }

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

Browsed Source: [clear]