Statistics
| Revision:

svn-gvsig-desktop / trunk / org.gvsig.desktop / org.gvsig.desktop.framework / org.gvsig.andami / src / main / java / org / gvsig / andami / ConfigurationException.java @ 44093

History | View | Annotate | Download (1.9 KB)

1
/**
2
 * gvSIG. Desktop Geographic Information System.
3
 *
4
 * Copyright (C) 2007-2013 gvSIG Association.
5
 *
6
 * This program is free software; you can redistribute it and/or
7
 * modify it under the terms of the GNU General Public License
8
 * as published by the Free Software Foundation; either version 3
9
 * of the License, or (at your option) any later version.
10
 *
11
 * This program is distributed in the hope that it will be useful,
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
 * GNU General Public License for more details.
15
 *
16
 * You should have received a copy of the GNU General Public License
17
 * along with this program; if not, write to the Free Software
18
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
19
 * MA  02110-1301, USA.
20
 *
21
 * For any additional information, do not hesitate to contact us
22
 * at info AT gvsig.com, or visit our website www.gvsig.com.
23
 */
24
package org.gvsig.andami;
25

    
26
/**
27
 * Indica que se ha producido un error accediendo a los ficheros de configuraci?n
28
 * de la plicaci?n, de Andami o de los plugins
29
 */
30
public class ConfigurationException extends Exception {
31
    /**
32
     *
33
     */
34
    public ConfigurationException() {
35
        super();
36

    
37
        // TODO Auto-generated constructor stub
38
    }
39

    
40
    /**
41
     * DOCUMENT ME!
42
     *
43
     * @param message
44
     */
45
    public ConfigurationException(String message) {
46
        super(message);
47

    
48
        // TODO Auto-generated constructor stub
49
    }
50

    
51
    /**
52
     * DOCUMENT ME!
53
     *
54
     * @param message
55
     * @param cause
56
     */
57
    public ConfigurationException(String message, Throwable cause) {
58
        super(message, cause);
59

    
60
        // TODO Auto-generated constructor stub
61
    }
62

    
63
    /**
64
     * DOCUMENT ME!
65
     *
66
     * @param cause
67
     */
68
    public ConfigurationException(Throwable cause) {
69
        super(cause);
70

    
71
        // TODO Auto-generated constructor stub
72
    }
73
}