~ubuntu-branches/ubuntu/raring/geotranz/raring

« back to all changes in this revision

Viewing changes to geotrans2/java_gui/geotrans/jni/GeotransError.java

  • Committer: Bazaar Package Importer
  • Author(s): Roberto Lumbreras
  • Date: 2008-10-17 14:43:09 UTC
  • Revision ID: james.westby@ubuntu.com-20081017144309-jb7uzfi1y1lvez8j
Tags: upstream-2.4.2
ImportĀ upstreamĀ versionĀ 2.4.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
 
 
3
 
 
4
 
 
5
 
 
6
/*
 
7
 * GeotransException.java
 
8
 *
 
9
 * Created on April 13, 2001, 1:34 PM
 
10
 */
 
11
 
 
12
package geotrans.jni;
 
13
 
 
14
/**
 
15
 *
 
16
 * @author  amyc
 
17
 * @version 
 
18
 */
 
19
public class GeotransError extends java.lang.Exception {
 
20
 
 
21
    /**
 
22
 * Creates new <code>GeotransException</code> without detail message.
 
23
     */
 
24
    public GeotransError() {
 
25
    }
 
26
 
 
27
 
 
28
    /**
 
29
 * Constructs an <code>GeotransException</code> with the specified detail message.
 
30
     * @param msg the detail message.
 
31
     */
 
32
    public GeotransError(String msg) {
 
33
        super(msg);
 
34
    }
 
35
}
 
36
 
 
37