mirror of
https://github.com/jwdeveloper/TikTokLiveJava.git
synced 2026-02-27 08:49:40 -05:00
24 lines
603 B
Java
24 lines
603 B
Java
package io.github.jwdeveloper.tiktok;
|
|
|
|
public class TikTokLiveException extends RuntimeException
|
|
{
|
|
public TikTokLiveException() {
|
|
}
|
|
|
|
public TikTokLiveException(String message) {
|
|
super(message);
|
|
}
|
|
|
|
public TikTokLiveException(String message, Throwable cause) {
|
|
super(message, cause);
|
|
}
|
|
|
|
public TikTokLiveException(Throwable cause) {
|
|
super(cause);
|
|
}
|
|
|
|
public TikTokLiveException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
|
|
super(message, cause, enableSuppression, writableStackTrace);
|
|
}
|
|
}
|