Statistics
| Revision:

root / trunk / libraries / libFMap / src / com / iver / cit / gvsig / fmap / layers / DifferentVersionException.java @ 1005

History | View | Annotate | Download (793 Bytes)

1
package com.iver.cit.gvsig.fmap.layers;
2

    
3
/**
4
 * Excepci?n que se lanzara cunado exista un problema de versi?n.
5
 *
6
 * @author Vicente Caballero Navarro
7
 */
8
public class DifferentVersionException extends Exception {
9
        /**
10
         * Crea una nueva DifferentVersionException
11
         */
12
        public DifferentVersionException() {
13
                super();
14
        }
15

    
16
        /**
17
         * Crea una nueva DifferentVersionException
18
         *
19
         * @param arg0
20
         */
21
        public DifferentVersionException(String arg0) {
22
                super(arg0);
23
        }
24

    
25
        /**
26
         * Crea una nueva DifferentVersionException
27
         *
28
         * @param arg0
29
         * @param arg1
30
         */
31
        public DifferentVersionException(String arg0, Throwable arg1) {
32
                super(arg0, arg1);
33
        }
34

    
35
        /**
36
         * Crea una nueva DifferentVersionException
37
         *
38
         * @param arg0
39
         */
40
        public DifferentVersionException(Throwable arg0) {
41
                super(arg0);
42
        }
43
}