mirror of
https://github.com/jwdeveloper/TikTokLiveJava.git
synced 2026-03-02 02:09:40 -05:00
Changes:
`TikTokEventListener` new method of listening events see it at TestApplication/ListenerExample.java Bugs: - Fixed bug: Websocket was sending ping after it was closed
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
package io.github.jwdeveloper.tiktok.exceptions;
|
||||
|
||||
public class TikTokEventListenerMethodException extends TikTokLiveException
|
||||
{
|
||||
public TikTokEventListenerMethodException() {
|
||||
}
|
||||
|
||||
public TikTokEventListenerMethodException(String message) {
|
||||
super(message);
|
||||
}
|
||||
|
||||
public TikTokEventListenerMethodException(String message, Throwable cause) {
|
||||
super(message, cause);
|
||||
}
|
||||
|
||||
public TikTokEventListenerMethodException(Throwable cause) {
|
||||
super(cause);
|
||||
}
|
||||
|
||||
public TikTokEventListenerMethodException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
|
||||
super(message, cause, enableSuppression, writableStackTrace);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user