it.uniroma2.art.coda.exception.parserexception.AntlrParserRegexException_old Maven / Gradle / Ivy
The newest version!
package it.uniroma2.art.coda.exception.parserexception;
public class AntlrParserRegexException extends PRParserException {
/**
*
*/
private static final long serialVersionUID = 1L;
String msg;
public AntlrParserRegexException(String msg) {
this.msg = msg;
}
/*public String getMsg(){
return msg;
}*/
@Override
public String getErrorAsString() {
return msg;
}
}