package primitives.machines;
/**
* An application exception, used mainly for debugging to diffrentiate between
* exceptions intentialy thrown by this project objects and exception thrown due
* bugs.
*/
public class MachineException extends Exception{
	/**
	*provides indexing information.
	*/
	public int e;
	public MachineException(String e){
		super(e);
	}
	/**
	*sets the field e.
	*@param e the integer to set.
	*/
	public MachineException(int e){
		this.e=e;
	}
}