Video SDK for Android API Reference
Loading...
Searching...
No Matches
ZoomVideoSDKWrongThreadException.java
Go to the documentation of this file.
1package us.zoom.sdk;
2
6public class ZoomVideoSDKWrongThreadException extends RuntimeException {
7
9 super();
10 }
11
12 public ZoomVideoSDKWrongThreadException(String message) {
13 super(message);
14 }
15
16 public ZoomVideoSDKWrongThreadException(String message, Throwable cause) {
17 super(message, cause);
18 }
19
20 public ZoomVideoSDKWrongThreadException(Throwable cause) {
21 super(cause);
22 }
23}
Thrown to indicate that a method was called in the wrong thread.