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
23 lines
458 B
Java
23 lines
458 B
Java
/*
|
|
* Decompiled with CFR 0.152.
|
|
*/
|
|
package javax.websocket;
|
|
|
|
import javax.websocket.Session;
|
|
|
|
public class SessionException
|
|
extends Exception {
|
|
private final Session session;
|
|
private static final long serialVersionUID = 12L;
|
|
|
|
public SessionException(String message, Throwable cause, Session session) {
|
|
super(message, cause);
|
|
this.session = session;
|
|
}
|
|
|
|
public Session getSession() {
|
|
return this.session;
|
|
}
|
|
}
|
|
|