com.codexombie.jspasm
Class BasicExceptionHandler

java.lang.Object
  extended by com.codexombie.jspasm.BasicExceptionHandler
All Implemented Interfaces:
IExceptionHandler

public class BasicExceptionHandler
extends java.lang.Object
implements IExceptionHandler

Provides the default reporting/handling of run-time exceptions. This handler dumps the exception's stack trace to the standard error stream.

Author:
Pete Ford, May 31, 2005 ©Pete Ford & CodeXombie.com 2005

Constructor Summary
BasicExceptionHandler()
           
 
Method Summary
 void handleException(java.lang.Exception ex)
           Called by the Engine when an exception occurs during normal running.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

BasicExceptionHandler

public BasicExceptionHandler()
Method Detail

handleException

public void handleException(java.lang.Exception ex)
Description copied from interface: IExceptionHandler

Called by the Engine when an exception occurs during normal running.

Specified by:
handleException in interface IExceptionHandler
Parameters:
ex - The Exception to report.