From: remm Date: Thu, 26 Oct 2006 13:24:22 +0000 (+0000) Subject: - Also use the parent constructor here. X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=9127ed953fc6e109d700642f4186cdfe25b6c814;p=tomcat7.0 - Also use the parent constructor here. git-svn-id: https://svn.apache.org/repos/asf/tomcat/tc6.0.x/trunk@467995 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/java/javax/servlet/ServletException.java b/java/javax/servlet/ServletException.java index c13e77fd9..5de0d1bb6 100644 --- a/java/javax/servlet/ServletException.java +++ b/java/javax/servlet/ServletException.java @@ -83,7 +83,7 @@ public class ServletException extends Exception { * necessary */ public ServletException(Throwable rootCause) { - this(rootCause.getLocalizedMessage(), rootCause); + super(rootCause); } /**