Statistics
| Revision:

svn-gvsig-desktop / trunk / libraries / libFMap / src / com / iver / cit / gvsig / fmap / edition / EditionExceptionOld.java @ 28544

History | View | Annotate | Download (3.19 KB)

1
/* gvSIG. Sistema de Informaci?n Geogr?fica de la Generalitat Valenciana
2
 *
3
 * Copyright (C) 2004 IVER T.I. and Generalitat Valenciana.
4
 *
5
 * This program is free software; you can redistribute it and/or
6
 * modify it under the terms of the GNU General Public License
7
 * as published by the Free Software Foundation; either version 2
8
 * of the License, or (at your option) any later version.
9
 *
10
 * This program is distributed in the hope that it will be useful,
11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
 * GNU General Public License for more details.
14
 *
15
 * You should have received a copy of the GNU General Public License
16
 * along with this program; if not, write to the Free Software
17
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,USA.
18
 *
19
 * For more information, contact:
20
 *
21
 *  Generalitat Valenciana
22
 *   Conselleria d'Infraestructures i Transport
23
 *   Av. Blasco Ib??ez, 50
24
 *   46010 VALENCIA
25
 *   SPAIN
26
 *
27
 *      +34 963862235
28
 *   gvsig@gva.es
29
 *      www.gvsig.gva.es
30
 *
31
 *    or
32
 *
33
 *   IVER T.I. S.A
34
 *   Salamanca 50
35
 *   46005 Valencia
36
 *   Spain
37
 *
38
 *   +34 963163400
39
 *   dac@iver.es
40
 */
41
package com.iver.cit.gvsig.fmap.edition;
42

    
43
/**
44
 * <p>An <code>EditionException</code> is thrown if fails the edition of a layer or a table.</p>
45
 *
46
 * @author Fernando Gonz?lez Cort?s
47
 */
48
public class EditionExceptionOld extends Exception {
49
        /**
50
         * <p>Constructs a new edition exception with <code>null</code> as its detail message. The cause
51
         *  is not initialized, and may subsequently be initialized by a call to <code>initCause</code>.</p>
52
         */
53
        public EditionExceptionOld() {
54
                super();
55
        }
56

    
57
        /**
58
         * <p>Constructs a new edition exception with the specified detail message. The cause is not
59
         *  initialized, and may subsequently be initialized by a call to <code>initCause</code>.
60
         * 
61
         * @param message the detail message. The detail message is saved for later retrieval by the <code>getMessage()</code> method.
62
         */
63
        public EditionExceptionOld(String arg0) {
64
                super(arg0);
65
        }
66

    
67
        /**
68
         * <p>Constructs a new edition exception with the specified detail message and cause.</p>
69
         * <p>Note that the detail message associated with <code>cause</code> is not automatically incorporated in this
70
         *  exception's detailed message.</p>
71
         *  
72
         * @param arg0 the detailed message (which is saved for later retrieval by the <code>getMessage()</code> method).
73
         * @param arg1 the cause (which is saved for later retrieval by the <code>getCause()</code> method). (A <code>null</code>
74
         *  value is permitted, and indicates that the cause is nonexistent or unknown.)
75
         */
76
        public EditionExceptionOld(String arg0, Throwable arg1) {
77
                super(arg0, arg1);
78
        }
79

    
80
        /**
81
         * <p>Constructs a edition exception with the specified cause and a detail message of <code>(cause==null ?
82
         *  null : cause.toString())</code> (which typically contains the class and detail message of cause).
83
         *  
84
         * @param arg0 the cause (which is saved for later retrieval by the <code>getCause()</code> method). (A <code>null</code>
85
         *  value is permitted, and indicates that the cause is nonexistent or unknown.)
86
         */
87
        public EditionExceptionOld(Throwable arg0) {
88
                super(arg0);
89
        }
90
}