proyal      2002/12/04 04:21:03

  Modified:    fortress/src/java/org/apache/excalibur/fortress/handler
                        AbstractComponentHandler.java
  Log:
  Fix semantic error - There is no checked exception to catch, only
  catch RuntimeException.
  
  Revision  Changes    Path
  1.43      +2 -2      
jakarta-avalon-excalibur/fortress/src/java/org/apache/excalibur/fortress/handler/AbstractComponentHandler.java
  
  Index: AbstractComponentHandler.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-avalon-excalibur/fortress/src/java/org/apache/excalibur/fortress/handler/AbstractComponentHandler.java,v
  retrieving revision 1.42
  retrieving revision 1.43
  diff -u -r1.42 -r1.43
  --- AbstractComponentHandler.java     4 Dec 2002 12:18:36 -0000       1.42
  +++ AbstractComponentHandler.java     4 Dec 2002 12:21:03 -0000       1.43
  @@ -298,7 +298,7 @@
           {
               ContainerUtil.dispose( m_factory );
           }
  -        catch( final Exception e )
  +        catch( RuntimeException e )
           {
               if( m_logger.isWarnEnabled() )
               {
  
  
  

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

Reply via email to