package net.minecraft.src.weasel.exception;

public class NoSuchRoutineException extends RuntimeException {
	
	public NoSuchRoutineException(String routineName) {
		super(routineName);
	}
	
}
