Statistics
| Revision:

svn-gvsig-desktop / trunk / org.gvsig.desktop / org.gvsig.desktop.compat.cdc / org.gvsig.fmap.mapcontext / org.gvsig.fmap.mapcontext.api / src / main / java / org / gvsig / fmap / mapcontext / layers / CancelationException.java @ 40559

History | View | Annotate | Download (3.16 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.fmap.mapcontext.layers;
25

    
26
/**
27
 * <p>There are classes and event handlers that allow cancel some of their operations when they are running. 
28
 * If fails that cancellation, a <code>CancelationException</code> exception is thrown.</p>
29
 * 
30
 * @see RuntimeException
31
 */
32
public class CancelationException extends RuntimeException {
33
        /**
34
         * <p>Constructs a new cancelation exception with <code>null</code> as its detail message.
35
         *  The cause is not initialized, and may subsequently be initialized by a call to <code>initCause</code>.</p>
36
         */
37
        public CancelationException() {
38
                super();
39
        }
40

    
41
        /**
42
         * <p>Constructs a new cancelation exception with the specified detail message. The cause is not
43
         *  initialized, and may subsequently be initialized by a call to <code>initCause</code>.
44
         * 
45
         * @param message the detail message. The detail message is saved for later retrieval by the <code>getMessage()</code> method.
46
         */
47
        public CancelationException(String message) {
48
                super(message);
49
        }
50

    
51
        /**
52
         * <p>Constructs a new cancelation exception with the specified detail message and cause.</p>
53
         * <p>Note that the detail message associated with cause is not automatically incorporated in this
54
         *  exception's detail message.</p>
55
         *  
56
         * @param message the detail message (which is saved for later retrieval by the <code>getMessage()</code> method).
57
         * @param cause the cause (which is saved for later retrieval by the <code>getCause()</code> method). (A <code>null</code>
58
         *  value is permitted, and indicates that the cause is nonexistent or unknown).
59
         */
60
        public CancelationException(String message, Throwable cause) {
61
                super(message, cause);
62
        }
63

    
64
        /**
65
         * <p>Constructs a cancelation exception with the specified <code>cause</code> and a detail message of <code>(cause==null ?
66
         *  null : cause.toString())</code> (which typically contains the class and detailed information about cause).
67
         *  
68
         * @param cause the cause (which is saved for later retrieval by the <code>getCause()</code> method). (A <code>null</code>
69
         *  value is permitted, and indicates that the cause is nonexistent or unknown).
70
         */
71
        public CancelationException(Throwable cause) {
72
                super(cause);
73
        }
74
}