package net.minecraft.src.weasel.exception;


/**
 * Weasel runtime expection thrown when instruction list reached end of scope without RETURN or END
 * 
 * @author MightyPork
 *
 */
public class EndOfProgramException extends WeaselRuntimeException {

	/**
	 * EOS
	 */
	public EndOfProgramException() {
		super("End of an instruction list reached.");
	}

}
