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