//MMLException is the top level exception class for MML programs.
public class MMLException extends Exception {
    public String instLabel;  // label of the offending instruction

    public MMLException(String label, String message) {
	super(message);
	instLabel = label;
    }
}
