org.springframework.richclient.exceptionhandling.delegation
Interface ExceptionHandlerDelegate

Show UML class diagram
All Superinterfaces:
Thread.UncaughtExceptionHandler
All Known Implementing Classes:
AbstractExceptionHandlerDelegate, ChainInspectingExceptionHandlerDelegate, SimpleExceptionHandlerDelegate

public interface ExceptionHandlerDelegate
extends Thread.UncaughtExceptionHandler

A delegate that might want to handle a throwable.

Since:
0.3.0
Author:
Geoffrey De Smet

Method Summary
 boolean hasAppropriateHandler(Throwable thrownTrowable)
          Checks if the delegate wants to handle the throwable.
 
Methods inherited from interface java.lang.Thread.UncaughtExceptionHandler
uncaughtException
 

Method Detail

hasAppropriateHandler

boolean hasAppropriateHandler(Throwable thrownTrowable)
Checks if the delegate wants to handle the throwable.

Parameters:
thrownTrowable - the thrown exception or error.
Returns:
true if this exception handler wants to handle the throwable.


Copyright © 2004-2009 The Spring Framework. All Rights Reserved.