Revision 37599 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

View differences:

MakePluginPackageServiceException.java
30 30
import org.gvsig.tools.exception.BaseException;
31 31

  
32 32
/**
33
 * Base exception for all the exceptions that are thrown by the process
34
 * of creation of an installer for a package of a plugin.
35
 * The {@link MakePluginPackageService} throws this exception on its methods.
33
 * Base exception for all the exceptions that are thrown by the process of
34
 * creation of an installer for a package of a plugin. The
35
 * {@link MakePluginPackageService} throws this exception on its methods.
36 36
 * 
37 37
 * @author <a href="mailto:jpiera@gvsig.org">Jorge Piera Llodr&aacute;</a>
38 38
 */
39
public class MakePluginPackageServiceException extends MakePackageServiceException {
39
public class MakePluginPackageServiceException extends
40
		MakePackageServiceException {
40 41

  
41
    private static final long serialVersionUID = 4388665353519171171L;
42
	private static final long serialVersionUID = 4388665353519171171L;
42 43

  
43
    private static final String KEY = "make_plugin_package_exception";
44
	private static final String KEY = "make_plugin_package_exception";
44 45

  
45
    /**
46
     * @see BaseException#BaseException(String, String, long)
47
     */
48
    public MakePluginPackageServiceException(String message) {
49
        super(message, KEY, serialVersionUID);
50
    }
46
	/**
47
	 * @see BaseException#BaseException(String, String, long)
48
	 */
49
	public MakePluginPackageServiceException(String message) {
50
		super(message, KEY, serialVersionUID);
51
	}
51 52

  
52
    /**
53
     * @see BaseException#BaseException(String, Throwable, String, long)
54
     */
55
    public MakePluginPackageServiceException(String message, Throwable cause) {
56
        super(message, cause, KEY, serialVersionUID);
57
    }
53
	/**
54
	 * @see BaseException#BaseException(String, Throwable, String, long)
55
	 */
56
	public MakePluginPackageServiceException(String message, Throwable cause) {
57
		super(message, cause, KEY, serialVersionUID);
58
	}
58 59

  
59
    /**
60
     * @see BaseException#BaseException(String, String, long)
61
     */
62
    public MakePluginPackageServiceException(String message, String key,
63
        long serialVersion) {
64
        super(message, key, serialVersion);
65
    }
60
	/**
61
	 * @see BaseException#BaseException(String, String, long)
62
	 */
63
	public MakePluginPackageServiceException(String message, String key,
64
			long serialVersion) {
65
		super(message, key, serialVersion);
66
	}
66 67

  
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
    }
68
	/**
69
	 * @see BaseException#BaseException(String, Throwable, String, long)
70
	 */
71
	public MakePluginPackageServiceException(String message, Throwable cause,
72
			String key, long serialVersion) {
73
		super(message, cause, key, serialVersion);
74
	}
74 75

  
75 76
}

Also available in: Unified diff