Files
MY_COMPILER/error/Error.java
2025-12-10 17:58:17 +08:00

28 lines
503 B
Java

package error;
public class Error {
private int line;
private ErrorType type;
public Error(int line, ErrorType type) {
this.line = line;
this.type = type;
}
public void printError() {
System.out.println(this.line + " " + this.type);
}
public int getLine() {
return this.line;
}
public ErrorType getType() {
return this.type;
}
public String toString() {
return this.line + " " + this.type + "\n";
}
}