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
26 lines
534 B
Java
26 lines
534 B
Java
/*
|
|
* Decompiled with CFR 0.152.
|
|
*/
|
|
package javax.websocket;
|
|
|
|
public class EncodeException
|
|
extends Exception {
|
|
private final Object object;
|
|
private static final long serialVersionUID = 6L;
|
|
|
|
public EncodeException(Object object, String message) {
|
|
super(message);
|
|
this.object = object;
|
|
}
|
|
|
|
public EncodeException(Object object, String message, Throwable cause) {
|
|
super(message, cause);
|
|
this.object = object;
|
|
}
|
|
|
|
public Object getObject() {
|
|
return this.object;
|
|
}
|
|
}
|
|
|