<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">//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;
    }
}
</pre></body></html>