001 package controller;
002
003 /**
004 * Adapter to connect the model to the view's exception handler.
005 *
006 * @author Mathias Ricken
007 */
008 public interface ISimulationExceptionAdapter {
009 /**
010 * Handle an exception that was caught during the simulation.
011 * @param t caught exception
012 */
013 void handleException(Throwable t);
014 }