From 0bd031ee5e4d811c3fe8220fbe9c771fd4832023 Mon Sep 17 00:00:00 2001 From: markt Date: Sun, 28 Jan 2007 16:39:42 +0000 Subject: [PATCH] Replace tabs with 8 spaces and tidy up the javadocs afterwards. No functional change. git-svn-id: https://svn.apache.org/repos/asf/tomcat/tc6.0.x/trunk@500824 13f79535-47bb-0310-9956-ffa450edef68 --- java/javax/servlet/jsp/JspException.java | 42 +++++++++++++------------------- 1 file changed, 17 insertions(+), 25 deletions(-) diff --git a/java/javax/servlet/jsp/JspException.java b/java/javax/servlet/jsp/JspException.java index 6d0f17254..39d98be97 100644 --- a/java/javax/servlet/jsp/JspException.java +++ b/java/javax/servlet/jsp/JspException.java @@ -39,13 +39,11 @@ public class JspException extends Exception { * specified message. The message can be written * to the server log and/or displayed for the user. * - * @param msg a String - * specifying the text of - * the exception message - * + * @param msg a String specifying the text of the exception + * message */ public JspException(String msg) { - super(msg); + super(msg); } @@ -56,19 +54,17 @@ public class JspException extends Exception { * normal operation, including a description message. * * - * @param message a String containing - * the text of the exception message - * - * @param rootCause the Throwable exception - * that interfered with the servlet's - * normal operation, making this servlet - * exception necessary + * @param message a String containing the text of the + * exception message * + * @param rootCause the Throwable exception that + * interfered with the servlet's normal operation, + * making this servlet exception necessary */ public JspException(String message, Throwable rootCause) { - super(message); - this.rootCause = rootCause; + super(message); + this.rootCause = rootCause; } @@ -85,29 +81,25 @@ public class JspException extends Exception { * this method can be overridden to create an exception message * designed for a specific locale. * - * @param rootCause the Throwable exception - * that interfered with the JSP's - * normal operation, making the JSP exception - * necessary - * + * @param rootCause the Throwable exception that + * interfered with the JSP's normal operation, making + * the JSP exception necessary */ public JspException(Throwable rootCause) { - super(rootCause.getLocalizedMessage()); - this.rootCause = rootCause; + super(rootCause.getLocalizedMessage()); + this.rootCause = rootCause; } /** * Returns the exception that caused this JSP exception. * - * - * @return the Throwable - * that caused this JSP exception + * @return the Throwable that caused this JSP exception * */ public Throwable getRootCause() { - return rootCause; + return rootCause; } } -- 2.11.0