junit.framework.AssertionError 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 to indicate that an assertion has failed.
*
*/
public class AssertionError extends Error
{
public AssertionError()
{
super();
}
/**
* Constructs an AssertionError with its detail message derived from the specified object,
* which is converted to a string as defined in The Java Language Specification, Second Edition, Section 15.18.1.1.
*/
public AssertionError(Object detailMessage)
{
super(String.valueOf(detailMessage));
}
}