01: package org.wings.session;
02:
03: import org.wings.io.Device;
04:
05: /**
06: * Created by IntelliJ IDEA.
07: * User: hengels
08: * Date: Aug 23, 2006
09: * Time: 12:49:48 PM
10: * To change this template use File | Settings | File Templates.
11: */
12: public interface ExceptionHandler {
13: void handle(Device device, Throwable thrown);
14: }
|