package commons.script.lang.operations;
public class Jump extends Interrupt
{
public Jump(String target)
{
   super(target);
}
}
