com.meapsoft
Class ExceptionHandler

java.lang.Object
  extended bycom.meapsoft.ExceptionHandler

public class ExceptionHandler
extends java.lang.Object

Standard interface for exception handlers. Whenever an application catches an Exception that it wants to handle in a standardized way should pass it along to the handleException method of a class that implements this interface. This is used to allow for a single interface to be used for exception handling in text mode utilities and MEAPsoftGUI.


Constructor Summary
ExceptionHandler()
           
 
Method Summary
 void handleException(java.lang.Exception e)
          Simple ExceptionHandler that just prints a stack trace and exits.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ExceptionHandler

public ExceptionHandler()
Method Detail

handleException

public void handleException(java.lang.Exception e)
Simple ExceptionHandler that just prints a stack trace and exits.