You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tapestry.apache.org by hl...@apache.org on 2003/03/26 20:48:22 UTC

cvs commit: jakarta-tapestry/framework/src/org/apache/tapestry ApplicationRuntimeException.java

hlship      2003/03/26 11:48:22

  Modified:    framework/src/org/apache/tapestry
                        ApplicationRuntimeException.java
  Log:
  [ 18340 ] ApplicationRuntimeException doesn't compile on jdk 1.3.
  
  Revision  Changes    Path
  1.3       +2 -2      jakarta-tapestry/framework/src/org/apache/tapestry/ApplicationRuntimeException.java
  
  Index: ApplicationRuntimeException.java
  ===================================================================
  RCS file: /home/cvs/jakarta-tapestry/framework/src/org/apache/tapestry/ApplicationRuntimeException.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- ApplicationRuntimeException.java	15 Mar 2003 21:22:09 -0000	1.2
  +++ ApplicationRuntimeException.java	26 Mar 2003 19:48:22 -0000	1.3
  @@ -76,7 +76,7 @@
   
       public ApplicationRuntimeException(Throwable rootCause)
       {
  -        super(rootCause.getMessage(), rootCause);
  +        this(rootCause.getMessage(), rootCause);
       }
   
       public ApplicationRuntimeException(String message)