Meeting SDK for Android API Reference
Loading...
Searching...
No Matches
ZoomSDKNotInitializedException.java
Go to the documentation of this file.
1package us.zoom.sdk;
2
9public class ZoomSDKNotInitializedException extends RuntimeException {
10
11 private static final long serialVersionUID = 1L;
12
14 super();
15 }
16
17 public ZoomSDKNotInitializedException(String detailMessage,
18 Throwable throwable) {
19 super(detailMessage, throwable);
20 }
21
22 public ZoomSDKNotInitializedException(String detailMessage) {
23 super(detailMessage);
24 }
25
26 public ZoomSDKNotInitializedException(Throwable throwable) {
27 super(throwable);
28 }
29
30}
Exceptions that Zoom SDK has not been initialized successfully.
ZoomSDKNotInitializedException(String detailMessage, Throwable throwable)