9899100101102103
@Override public void warning(String message, long line, long col) {} @Override public void error(String message, long line, long col) { throw new RiotException(fmtMessage(message, line, col)) ; }
102103104105106107
public void error(String message, long line, long col) { throw new RiotException(fmtMessage(message, line, col)) ; } @Override public void fatal(String message, long line, long col) { throw new RiotException(fmtMessage(message, line, col)) ; }
123124125126127128129
/** report an error */ @Override public void error(String message, long line, long col) { logError(message, line, col) ; throw new RiotException(fmtMessage(message, line, col)) ; }
131132133134135136137
/** report a fatal error - does not return */ @Override public void fatal(String message, long line, long col) { logFatal(message, line, col) ; throw new RiotException(fmtMessage(message, line, col)) ; }
153154155156157158159
161162163164165166167
178179180181182183184
/** report a warning - do not carry on */ @Override public void warning(String message, long line, long col) { logWarning(message, line, col) ; throw new RiotException(fmtMessage(message, line, col)) ; }
186187188189190191192
/** report an error - do not carry on */ @Override public void error(String message, long line, long col) { logError(message, line, col) ; throw new RiotException(fmtMessage(message, line, col)) ; }
193194195196197198199
@Override public void fatal(String message, long line, long col) { logFatal(message, line, col) ; throw new RiotException(fmtMessage(message, line, col)) ; }
204205206207208209210
{ /** report a warning - do not carry on */ @Override public void warning(String message, long line, long col) { throw new RiotException(fmtMessage(message, line, col)) ; }