jfarcand    2003/02/05 07:17:47

  Modified:    src/share/javax/servlet ServletException.java
  Log:
  Revert patch seems doesn't works with vm < 1.4
  
  Revision  Changes    Path
  1.3       +2 -2      
jakarta-servletapi-4/src/share/javax/servlet/ServletException.java
  
  Index: ServletException.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-servletapi-4/src/share/javax/servlet/ServletException.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- ServletException.java     5 Feb 2003 03:06:33 -0000       1.2
  +++ ServletException.java     5 Feb 2003 15:17:47 -0000       1.3
  @@ -129,7 +129,7 @@
        */
       
       public ServletException(String message, Throwable rootCause) {
  -       super(message, rootCause);
  +       super(message);
          this.rootCause = rootCause;
       }
   
  @@ -158,7 +158,7 @@
        */
   
       public ServletException(Throwable rootCause) {
  -       super(rootCause.getLocalizedMessage(), rootCause);
  +       super(rootCause.getLocalizedMessage());
          this.rootCause = rootCause;
       }
     
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to