KKSU
2025-02-08 b454df5959c07ed99f55bd1f528db6b9eb54b2a7
1
2
3
4
5
6
7
package com.best.javaSdk.converter.util.jsonReader;
 
public interface JSONErrorListener {
    void start(String text);
    void error(String message, int column);
    void end();
}