01: /*
02: * Copyright (C) 2001, 2002 Robert MacGrogan
03: *
04: * This library is free software; you can redistribute it and/or
05: * modify it under the terms of the GNU Lesser General Public
06: * License as published by the Free Software Foundation; either
07: * version 2.1 of the License, or (at your option) any later version.
08: *
09: * This library is distributed in the hope that it will be useful,
10: * but WITHOUT ANY WARRANTY; without even the implied warranty of
11: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12: * Lesser General Public License for more details.
13: *
14: * You should have received a copy of the GNU Lesser General Public
15: * License along with this library; if not, write to the Free Software
16: * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17: *
18: *
19: * $Archive: SourceJammer$
20: * $FileName: CancelException.java$
21: * $FileID: 4480$
22: *
23: * Last change:
24: * $AuthorName: Rob MacGrogan$
25: * $Date: 4/23/03 5:19 PM$
26: * $Comment: Replaced GPL header with LGPL header.$
27: */
28: package org.sourcejammer.server.install;
29:
30: import org.sourcejammer.util.SourceJammerExceptionChain;
31:
32: /**
33: * Title: $FileName: CancelException.java$
34: * @author $AuthorName: Rob MacGrogan$
35: * @version $VerNum: 2$
36: * $KeyWordsOff: $<br><br>
37: *
38: *
39: * User canceled an action.
40: */
41: public class CancelException extends SourceJammerExceptionChain {
42: /**
43: * Constructor for CancelException.
44: */
45: public CancelException() {
46: super ();
47: }
48:
49: /**
50: * Constructor for CancelException.
51: * @param msg
52: */
53: public CancelException(String msg) {
54: super (msg);
55: }
56:
57: /**
58: * Constructor for CancelException.
59: * @param msg
60: * @param ex
61: */
62: public CancelException(String msg, Exception ex) {
63: super(msg, ex);
64: }
65:
66: }
|