Source code: jflight/gps/GpsTimeoutException.java
1
2 /*
3 Project name: JFlight
4 Hosted at: www.sourceforge.net
5 Homepage: jflight.sourceforge.net
6 Licence: GNU public licence (GPL)
7 Filename: GpsTimeoutException.java
8 Package: jflight
9 */
10 package jflight.gps;
11
12
13
14 /**
15 Indicates a timeout on the (serial) line when communicating with the GPS. <br>
16 Possible reasons: <br>
17 - no connection <br>
18 - connection lost
19
20
21 @since JDK1.1.x
22 @author Rüdiger Bien
23
24 CVS-section:
25 @file_version $Revision: 1.1.1.1 $
26
27 */
28 public class GpsTimeoutException extends Exception {
29
30 /**
31 * Constructs a <code>GpsTimeoutException</code>
32 * with the specified detail message.
33 *
34 *
35 * @param str Message
36 */
37 public GpsTimeoutException(String str) {
38 super(str);
39 }
40
41 /**
42 * Constructs a <code>GpsTimeoutException</code>
43 * with no detail message.
44 */
45 public GpsTimeoutException() {
46 super();
47 }
48 }
49