KKSU
2025-01-03 ca4cfb6e80c47be9fcb3a3e1d4575cf2ed9f1f62
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();
}