Statistics
| Revision:

svn-gvsig-desktop / branches / v2_0_0_prep / extensions / org.gvsig.installer / org.gvsig.installer.lib / org.gvsig.installer.lib.api / src / main / java / org / gvsig / installer / lib / api / creation / MakePluginPackageServiceException.java @ 33743

History | View | Annotate | Download (2.46 KB)

1 32269 jpiera
/* gvSIG. Geographic Information System of the Valencian Government
2
 *
3
 * Copyright (C) 2007-2008 Infrastructures and Transports Department
4
 * of the Valencian Government (CIT)
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 2
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
 */
22
23
/*
24
 * AUTHORS (In addition to CIT):
25
 * 2010 {Prodevelop}   {Task}
26
 */
27
28
package org.gvsig.installer.lib.api.creation;
29
30
import org.gvsig.tools.exception.BaseException;
31
32
/**
33 32467 jpiera
 * Base exception for all the exceptions that are thrown by the process
34 32597 jpiera
 * of creation of an installer for a package of a plugin.
35
 * The {@link MakePluginPackageService} throws this exception on its methods.
36 33692 cordinyana
 *
37 32269 jpiera
 * @author <a href="mailto:jpiera@gvsig.org">Jorge Piera Llodr&aacute;</a>
38
 */
39 33692 cordinyana
public class MakePluginPackageServiceException extends BaseException {
40 32269 jpiera
41 33692 cordinyana
    private static final long serialVersionUID = 4388665353519171171L;
42 32269 jpiera
43 33692 cordinyana
    private static final String KEY = "make_plugin_package_exception";
44 32269 jpiera
45 33692 cordinyana
    /**
46
     * @see BaseException#BaseException(String, String, long)
47
     */
48
    public MakePluginPackageServiceException(String message) {
49
        super(message, KEY, serialVersionUID);
50
    }
51 32269 jpiera
52 33692 cordinyana
    /**
53
     * @see BaseException#BaseException(String, Throwable, String, long)
54
     */
55
    public MakePluginPackageServiceException(String message, Throwable cause) {
56
        super(message, cause, KEY, serialVersionUID);
57
    }
58 32269 jpiera
59 33692 cordinyana
    /**
60
     * @see BaseException#BaseException(String, String, long)
61
     */
62
    public MakePluginPackageServiceException(String message, String key,
63
        long serialVersion) {
64
        super(message, key, serialVersion);
65
    }
66
67
    /**
68
     * @see BaseException#BaseException(String, Throwable, String, long)
69
     */
70
    public MakePluginPackageServiceException(String message, Throwable cause,
71
        String key, long serialVersion) {
72
        super(message, cause, key, serialVersion);
73
    }
74
75 32269 jpiera
}