Administrator
2026-06-16 cc81b498b57c8e67c03d5c335afd1fa63e4cabfb
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();
}