KKSU
2025-03-12 e3178be0db50452aace1e6c6f0e64f6868cd2aa7
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();
}