All Downloads are FREE. Search and download functionalities are using the official Maven repository.

test.tck.TckInternalError Maven / Gradle / Ivy

There is a newer version: 1.3.0-91
Show newest version
package test.tck;

/**
 * This class serves to wrap exceptions that were thrown during the testing
 * and that were not provoked by the tested implementaion.
 *
 * @author Emil Ivov
 *         Network Research Team, Louis Pasteur University, Strasbourg, France
 *  This code is in the public domain.
 * @version 1.0
 */

public class TckInternalError extends Error
{

    public TckInternalError(String message)
    {
        super(message);
    TestHarness.abortOnFail = true;
    }

    public TckInternalError(String message, Throwable cause)
    {
        super(message, cause);
    TestHarness.abortOnFail = true;
    }

    public TckInternalError(Throwable cause)
    {
        super(cause);
    TestHarness.abortOnFail = true;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy