junit.framework.AssertionFailedError Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dragome-js-jre Show documentation
Show all versions of dragome-js-jre Show documentation
Dragome SDK module: js-jre
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(defaultString(message));
}
private static String defaultString(String message)
{
return message == null ? "" : message;
}
}