KKSU
2025-01-03 ca4cfb6e80c47be9fcb3a3e1d4575cf2ed9f1f62
1
2
3
4
5
6
7
8
9
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());
    }
}