ExcessiveErrorException.java

package edu.udel.cis.vsl.tass.log.IF;

public class ExcessiveErrorException extends RuntimeException {

	private static final long serialVersionUID = 2153320500688212179L;

	private int numErrors;

	public ExcessiveErrorException(int numErrors) {
		super("The bound on the number of errors has been reached.");
		this.numErrors = numErrors;
	}

	public int numErrors() {
		return numErrors;
	}

}