Statistics
| Revision:

svn-gvsig-desktop / trunk / extensions / extCAD / src / com / iver / cit / gvsig / gui / cad / exception / PointException.java @ 6024

History | View | Annotate | Download (504 Bytes)

1
package com.iver.cit.gvsig.gui.cad.exception;
2

    
3
public class PointException extends Exception {
4

    
5
        public PointException() {
6
                super();
7
                // TODO Auto-generated constructor stub
8
        }
9

    
10
        public PointException(String arg0) {
11
                super(arg0);
12
                // TODO Auto-generated constructor stub
13
        }
14

    
15
        public PointException(Throwable arg0) {
16
                super(arg0);
17
                // TODO Auto-generated constructor stub
18
        }
19

    
20
        public PointException(String arg0, Throwable arg1) {
21
                super(arg0, arg1);
22
                // TODO Auto-generated constructor stub
23
        }
24

    
25
}