summaryrefslogtreecommitdiff
path: root/src/semanticanalysis/SemanticError.java
blob: 745e3fb1c5e9455dae958fd2346b1e1d79e24613 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package semanticanalysis;

/**
 * Class respresents a semantic error.
 */
public class SemanticError {
    private String msg;

    public SemanticError(String msg) {
        this.msg = msg;
    }

    public String toString() {
        return msg;
    }
}