📄 grammerexception.java
字号:
package com.jasml.compiler;
public class GrammerException extends ParsingException {
public GrammerException(int offset, String msg) {
super(offset, msg);
}
public GrammerException(int offset, int line, int column, String msg) {
super(offset, line, column, msg);
}
public GrammerException(String msg, Exception e) {
super(msg, e);
}
public GrammerException(int line, int column, String msg) {
super(line, column, msg);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -