KKSU
2025-02-05 0305e98e381582c66e9b929918cf5bb46989a3c5
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();
}