1 package siouxsie.desktop.commands;
2
3 /**
4 * Exception handler for commands.
5 * @author Arnaud Cogoluegnes
6 * @version $Id$
7 */
8 public interface IExceptionHandler {
9
10 /**
11 * Handle exception
12 * @param e
13 */
14 public void handleException(Exception e);
15
16 }