Fix some trivial Eclipse warnings
authormarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Fri, 1 Jan 2010 18:31:17 +0000 (18:31 +0000)
committermarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Fri, 1 Jan 2010 18:31:17 +0000 (18:31 +0000)
git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@895048 13f79535-47bb-0310-9956-ffa450edef68

java/org/apache/jasper/el/JspELException.java
java/org/apache/jasper/el/JspMethodNotFoundException.java
java/org/apache/jasper/el/JspPropertyNotFoundException.java
java/org/apache/jasper/el/JspPropertyNotWritableException.java

index c9cf302..3651a65 100644 (file)
@@ -20,6 +20,8 @@ import javax.el.ELException;
 
 public class JspELException extends ELException {
 
+    private static final long serialVersionUID = 1L;
+
     public JspELException(String mark, ELException e) {
         super(mark + " " + e.getMessage(), e.getCause());
     }
index abb9d30..249576d 100644 (file)
@@ -20,6 +20,8 @@ import javax.el.MethodNotFoundException;
 
 public class JspMethodNotFoundException extends MethodNotFoundException {
 
+    private static final long serialVersionUID = 1L;
+
     public JspMethodNotFoundException(String mark, MethodNotFoundException e) {
         super(mark + " " + e.getMessage(), e.getCause());
     }
index 89ac40b..e09b763 100644 (file)
@@ -21,6 +21,8 @@ import javax.el.PropertyNotFoundException;
 public final class JspPropertyNotFoundException extends
         PropertyNotFoundException {
 
+    private static final long serialVersionUID = 1L;
+
     public JspPropertyNotFoundException(String mark, PropertyNotFoundException e) {
         super(mark + " " + e.getMessage(), e.getCause());
     }
index 70507a4..9510777 100644 (file)
@@ -21,6 +21,8 @@ import javax.el.PropertyNotWritableException;
 public class JspPropertyNotWritableException extends
         PropertyNotWritableException {
 
+    private static final long serialVersionUID = 1L;
+
     public JspPropertyNotWritableException(String mark, PropertyNotWritableException e) {
         super(mark + " " + e.getMessage(), e.getCause());
     }