package werti.util;

/**
 * A DummyException is used to throw an exception in order to move to a 
 * certain point in the code, e.g., a finally block.
 * 
 * @author Marion Zepf
 */
public class DummyException extends Exception {

	public DummyException() {
		super();
		// Auto-generated constructor stub
	}

	public DummyException(String message) {
		super(message);
		// Auto-generated constructor stub
	}

	public DummyException(Throwable cause) {
		super(cause);
		// Auto-generated constructor stub
	}

	public DummyException(String message, Throwable cause) {
		super(message, cause);
		// Auto-generated constructor stub
	}

}
