Statistics
| Revision:

root / trunk / applications / appgvSIG / src / com / iver / cit / gvsig / project / documents / exceptions / NameException.java @ 7304

History | View | Annotate | Download (843 Bytes)

1
package com.iver.cit.gvsig.project.documents.exceptions;
2

    
3
/**
4
 * Excepci?n que indica un conflicto de nombres en los elementos del 
5
 * proyecto
6
 *
7
 * @author Fernando Gonz?lez Cort?s
8
 */
9
public class NameException extends RuntimeException {
10
        /**
11
         *
12
         */
13
        public NameException() {
14
                super();
15

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

    
19
        /**
20
         * DOCUMENT ME!
21
         *
22
         * @param message
23
         */
24
        public NameException(String message) {
25
                super(message);
26

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

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

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

    
42
        /**
43
         * DOCUMENT ME!
44
         *
45
         * @param cause
46
         */
47
        public NameException(Throwable cause) {
48
                super(cause);
49

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