Komplettes G-Earth Paket inkl. JRE, Extensions und Tools. Extensions: - G-BuildTools, G-Click Ultimate, G-Loader, G-Manipulate - G-Presets, G-Translator, G-Trigger, G-itemViewer - Market Utils, Packet Info Explorer, Plants - RandomRoomVisitor, RoomLogger, Sanbovir Photo Inspector - SpyFriends, WallAligner, XabboScripter, xabbo
29 lines
511 B
Java
29 lines
511 B
Java
/*
|
|
* Decompiled with CFR 0.152.
|
|
*/
|
|
package javax.websocket;
|
|
|
|
public final class SendResult {
|
|
private final Throwable exception;
|
|
private final boolean isOK;
|
|
|
|
public SendResult(Throwable exception) {
|
|
this.exception = exception;
|
|
this.isOK = false;
|
|
}
|
|
|
|
public SendResult() {
|
|
this.exception = null;
|
|
this.isOK = true;
|
|
}
|
|
|
|
public Throwable getException() {
|
|
return this.exception;
|
|
}
|
|
|
|
public boolean isOK() {
|
|
return this.isOK;
|
|
}
|
|
}
|
|
|