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
47 lines
1.1 KiB
Java
47 lines
1.1 KiB
Java
/*
|
|
* Decompiled with CFR 0.152.
|
|
*/
|
|
package javax.websocket;
|
|
|
|
import java.nio.ByteBuffer;
|
|
|
|
public class DecodeException
|
|
extends Exception {
|
|
private final ByteBuffer bb;
|
|
private final String encodedString;
|
|
private static final long serialVersionUID = 6L;
|
|
|
|
public DecodeException(ByteBuffer bb, String message, Throwable cause) {
|
|
super(message, cause);
|
|
this.encodedString = null;
|
|
this.bb = bb;
|
|
}
|
|
|
|
public DecodeException(String encodedString, String message, Throwable cause) {
|
|
super(message, cause);
|
|
this.encodedString = encodedString;
|
|
this.bb = null;
|
|
}
|
|
|
|
public DecodeException(ByteBuffer bb, String message) {
|
|
super(message);
|
|
this.encodedString = null;
|
|
this.bb = bb;
|
|
}
|
|
|
|
public DecodeException(String encodedString, String message) {
|
|
super(message);
|
|
this.encodedString = encodedString;
|
|
this.bb = null;
|
|
}
|
|
|
|
public ByteBuffer getBytes() {
|
|
return this.bb;
|
|
}
|
|
|
|
public String getText() {
|
|
return this.encodedString;
|
|
}
|
|
}
|
|
|