com.oakgrovesystems.util
Interface ExceptionHandler


public interface ExceptionHandler

Implementations of ExceptionHandler are used to seperate handling of runtime exceptions from the code where the exception occured. A section of code can catch Exception objects and redirect them to an ExceptionHandler for processing instead of directly handling them or allowing them to halt execution and propagate up the stack.


Method Summary
 void handle(java.lang.Exception er)
          Handles an Exception and does not rethrow it when it's finished handling it.
 

Method Detail

handle

public void handle(java.lang.Exception er)
Handles an Exception and does not rethrow it when it's finished handling it.

Parameters:
er - the Exception to handle


Copyright (c) 1999-2004 Oak Grove Systems. All Rights Reserved.