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

org.etlunit.TestExecutionError Maven / Gradle / Ivy

There is a newer version: 1.6.9
Show newest version
package org.etlunit;

public class TestExecutionError extends Exception
{
	private final String errorId;

	public TestExecutionError(String msg)
	{
		this(msg, TestConstants.ERR_UNSPECIFIED);
	}

	public TestExecutionError(String msg, String errorId)
	{
		super(msg);

		this.errorId = errorId;
	}

	public TestExecutionError(String msg, Throwable e)
	{
		this(msg, TestConstants.ERR_UNSPECIFIED, e);
	}

	public TestExecutionError(String msg, String errorId, Throwable e)
	{
		super(msg, e);

		this.errorId = errorId;
	}

	public String getErrorId()
	{
		return errorId;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy