Statistics
| Revision:

svn-gvsig-desktop / trunk / libraries / libIverUtiles / src / com / iver / utiles / swing / objectSelection / SelectionException.java @ 1836

History | View | Annotate | Download (883 Bytes)

1
package com.iver.utiles.swing.objectSelection;
2

    
3
/**
4
 * Excepci?n que indica que el modelo del control ObjectSelection no puede
5
 * proporcionar la informaci?n requerida.
6
 *
7
 * @author Fernando Gonz?lez Cort?s
8
 */
9
public class SelectionException extends Exception {
10
        /**
11
         *
12
         */
13
        public SelectionException() {
14
                super();
15

    
16
                // TODO Auto-generated constructor stub
17
        }
18

    
19
        /**
20
         * constructor
21
         *
22
         * @param message
23
         */
24
        public SelectionException(String message) {
25
                super(message);
26

    
27
                // TODO Auto-generated constructor stub
28
        }
29

    
30
        /**
31
         * constructor
32
         *
33
         * @param message
34
         * @param cause
35
         */
36
        public SelectionException(String message, Throwable cause) {
37
                super(message, cause);
38

    
39
                // TODO Auto-generated constructor stub
40
        }
41

    
42
        /**
43
         * constructor
44
         *
45
         * @param cause
46
         */
47
        public SelectionException(Throwable cause) {
48
                super(cause);
49

    
50
                // TODO Auto-generated constructor stub
51
        }
52
}