1 /*
2 * $Id: JdiConnectionException.java,v 1.2 2003/04/02 19:48:49 austvold Exp $
3 * Copyright 2003 OErjan Nygaard Austvold. All rights reserved.
4 */
5
6 package org.jdiseq;
7
8 /***
9 * This class implements an exception which indicates an error in the JDI connection.
10 * <p>Changelog:
11 * <pre>
12 * $Log: JdiConnectionException.java,v $
13 * Revision 1.2 2003/04/02 19:48:49 austvold
14 * Minor updates. Mostly adaptation to new event and eventlistener name.
15 * General brush-up on javadoc comments.
16 * Removal of auto-added revision and date-of-commit members.
17 *
18 * Revision 1.1.1.1 2003/03/28 08:18:23 austvold
19 * Initial import.
20 *
21 * </pre>
22 *
23 * @author Ørjan Nygaard Austvold <austvold@acm.org>
24 * @version $Id: JdiConnectionException.java,v 1.2 2003/04/02 19:48:49 austvold Exp $
25 */
26 public class JdiConnectionException extends Exception {
27 /***
28 * Constructs a new exception.
29 * @param message the detail message. The detail message is saved for
30 * later retrieval by the {@link #getMessage()} method.
31 */
32 public JdiConnectionException(String message) {
33 super(message);
34 }
35
36 /***
37 * Constructs a new exception.
38 * @param message the detail message. The detail message is saved for
39 * later retrieval by the {@link #getMessage()} method.
40 * @param cause the cause (which is saved for later retrieval by the
41 * {@link #getCause()} method). (A <tt>null</tt> value is permitted,
42 * and indicates that the cause is nonexistent or unknown.)
43 */
44 public JdiConnectionException(String message, Throwable cause) {
45 super(message, cause);
46 }
47
48 /***
49 * Constructs a new exception.
50 * @param cause the cause (which is saved for later retrieval by the
51 * {@link #getCause()} method). (A <tt>null</tt> value is permitted,
52 * and indicates that the cause is nonexistent or unknown.)
53 */
54 public JdiConnectionException(Throwable cause) {
55 super(cause);
56 }
57 }
This page was automatically generated by Maven