1 /**
2 * .
3 * Copyright � 1999 Erich P G.
4 *
5 */
6
7 package autohit.transport;
8
9 /**
10 * A Transport exception. For now, this just encapsulates a plain,
11 * old Exception.
12 *
13 * @author Erich P. Gatejen
14 * @version 1.0
15 * <i>Version History</i>
16 * <code>EPG - Initial - 18Jan99</code>
17 *
18 */
19 public class TransportException extends Exception {
20
21 // --- FINAL FIELDS ------------------------------------------------------
22
23 // --- FIELDS ------------------------------------------------------------
24
25 // --- PUBLIC METHODS ----------------------------------------------------
26
27
28 /**
29 * Default Constructor.
30 */
31 public TransportException() {
32
33 super("Unknown TransportException");
34 }
35
36 /**
37 * Message constructor
38 */
39 public TransportException(String message) {
40
41 super(message);
42
43 }
44
45 // --- PRIVATE METHODS ---------------------------------------------------
46
47 }
|