01: /*
02: * Copyright 2000,2005 wingS development team.
03: *
04: * This file is part of wingS (http://wingsframework.org).
05: *
06: * wingS is free software; you can redistribute it and/or modify
07: * it under the terms of the GNU Lesser General Public License
08: * as published by the Free Software Foundation; either version 2.1
09: * of the License, or (at your option) any later version.
10: *
11: * Please see COPYING for the complete licence.
12: */
13: package org.wings.event;
14:
15: /**
16: * For vetoing an application triggered session exit.
17: *
18: * @author <a href="mailto:armin.haaf@mercatis.de">Armin Haaf</a>
19: */
20: public class ExitVetoException extends Exception {
21:
22: public ExitVetoException(String message) {
23: super (message);
24: }
25:
26: public ExitVetoException(String message, Throwable cause) {
27: super(message, cause);
28: }
29:
30: }
|