Revision 33692 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
33 33
 * Base exception for all the exceptions that are thrown by the process
34 34
 * of creation of an installer for a package of a plugin.
35 35
 * The {@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 BaseException{
40
	private static final long serialVersionUID = 4388665353519171171L;
39
public class MakePluginPackageServiceException extends BaseException {
41 40

  
42
	private static final String KEY = "make_plugin_package_exception";
41
    private static final long serialVersionUID = 4388665353519171171L;
43 42

  
44
	/**
45
	 * @see BaseException#BaseException(String, String, long)
46
	 */
47
	public MakePluginPackageServiceException(String message) {
48
		super(message, KEY, serialVersionUID);
49
	}
43
    private static final String KEY = "make_plugin_package_exception";
50 44

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

  
58
	/**
59
	 * @see BaseException#BaseException(String, String, long)
60
	 */
61
	public MakePluginPackageServiceException(String message, String key,
62
			long serialVersion) {
63
		super(message, key, serialVersion);
64
	}
65
	
66
	/**
67
	 * @see BaseException#BaseException(String, Throwable, String, long)
68
	 */
69
	public MakePluginPackageServiceException(String message, Throwable cause,
70
			String key, long serialVersion) {
71
		super(message, cause, key, serialVersion);
72
	}
52
    /**
53
     * @see BaseException#BaseException(String, Throwable, String, long)
54
     */
55
    public MakePluginPackageServiceException(String message, Throwable cause) {
56
        super(message, cause, KEY, serialVersionUID);
57
    }
73 58

  
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
    }
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

  
74 75
}
75

  

Also available in: Unified diff