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
32 lines
604 B
Java
32 lines
604 B
Java
/*
|
|
* Decompiled with CFR 0.152.
|
|
*/
|
|
package javax.servlet;
|
|
|
|
public class ServletException
|
|
extends Exception {
|
|
private Throwable rootCause;
|
|
|
|
public ServletException() {
|
|
}
|
|
|
|
public ServletException(String message) {
|
|
super(message);
|
|
}
|
|
|
|
public ServletException(String message, Throwable rootCause) {
|
|
super(message, rootCause);
|
|
this.rootCause = rootCause;
|
|
}
|
|
|
|
public ServletException(Throwable rootCause) {
|
|
super(rootCause);
|
|
this.rootCause = rootCause;
|
|
}
|
|
|
|
public Throwable getRootCause() {
|
|
return this.rootCause;
|
|
}
|
|
}
|
|
|