mirror of
https://github.com/jwdeveloper/TikTokLiveJava.git
synced 2026-02-28 01:09:40 -05:00
Initial commit
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user