Statistics
| Revision:

root / branches / v2_0_0_prep / extensions / extEditing / src / org / gvsig / editing / gui / cad / exception / CommandException.java @ 29616

History | View | Annotate | Download (513 Bytes)

1 29616 jpiera
package org.gvsig.editing.gui.cad.exception;
2 5734 caballero
3
public class CommandException extends Exception {
4
5
        public CommandException() {
6
                super();
7
                // TODO Auto-generated constructor stub
8
        }
9
10
        public CommandException(String arg0) {
11
                super(arg0);
12
                // TODO Auto-generated constructor stub
13
        }
14
15
        public CommandException(Throwable arg0) {
16
                super(arg0);
17
                // TODO Auto-generated constructor stub
18
        }
19
20
        public CommandException(String arg0, Throwable arg1) {
21
                super(arg0, arg1);
22
                // TODO Auto-generated constructor stub
23
        }
24
25
}