package net.minecraft.src.weasel.exception;

import javax.script.ScriptException;


/**
 * Random exception generated during execution of a Weasel program
 * 
 * @author MightyPork
 */
public class WeaselRuntimeException extends RuntimeException {

	/**
	 * Random exception generated during execution of a Weasel program
	 * 
	 * @param message what caused this exception
	 */
	public WeaselRuntimeException(String message) {
		super(message);
	}

	public WeaselRuntimeException(RuntimeException e) {
		super(e);
	}

}
