* which can opt to rethrow to terminate the scanning.
*/
void error(CssErrorCode errorCode, CssReader reader, Object... arguments) throws
CssException
{
CssScannerException cse = new CssScannerException(errorCode, CssLocation.create(reader), arguments);
errors.add(cse);
errorListener.error(cse);
}