package com.best.javaSdk.converter.util.jsonReader; public class ExceptionErrorListener extends BufferErrorListener { public void error(String type, int col) { super.error(type, col); throw new IllegalArgumentException(buffer.toString()); } }