[jboss-cvs] jboss-seam/src/main/org/jboss/seam/interceptors ...

Gavin King gavin.king at jboss.com
Sun Oct 1 11:52:59 EDT 2006


  User: gavin   
  Date: 06/10/01 11:52:59

  Modified:    src/main/org/jboss/seam/interceptors 
                        ExceptionInterceptor.java
  Log:
  but there is no place to handle an application exception in JSF
  
  Revision  Changes    Path
  1.8       +2 -3      jboss-seam/src/main/org/jboss/seam/interceptors/ExceptionInterceptor.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: ExceptionInterceptor.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/interceptors/ExceptionInterceptor.java,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -b -r1.7 -r1.8
  --- ExceptionInterceptor.java	27 Sep 2006 19:56:09 -0000	1.7
  +++ ExceptionInterceptor.java	1 Oct 2006 15:52:58 -0000	1.8
  @@ -1,4 +1,4 @@
  -//$Id: ExceptionInterceptor.java,v 1.7 2006/09/27 19:56:09 gavin Exp $
  +//$Id: ExceptionInterceptor.java,v 1.8 2006/10/01 15:52:58 gavin Exp $
   package org.jboss.seam.interceptors;
   
   import java.util.Map;
  @@ -75,8 +75,7 @@
                  error( httpError.errorCode(), renderExceptionMessage( e, httpError.message() ) );
                  handled(e);
               }
  -            else if ( Init.instance().isDebug() && 
  -                      !e.getClass().isAnnotationPresent(javax.ejb.ApplicationException.class) )
  +            else if ( Init.instance().isDebug() )
               {
                  redirectToDebugPage(e);
                  handled(e);
  
  
  



More information about the jboss-cvs-commits mailing list