Revision 37599 branches/v2_0_0_prep/extensions/org.gvsig.installer/org.gvsig.installer.lib/org.gvsig.installer.lib.spi/src/main/java/org/gvsig/installer/lib/spi/InstallerInfoFileException.java

View differences:

InstallerInfoFileException.java
34 34
 * @author <a href="mailto:jpiera@gvsig.org">Jorge Piera Llodr&aacute;</a>
35 35
 */
36 36
public class InstallerInfoFileException extends
37
    MakePluginPackageServiceException {
37
		MakePluginPackageServiceException {
38 38

  
39
    private static final long serialVersionUID = -5388898489108649788L;
39
	private static final long serialVersionUID = -5388898489108649788L;
40 40

  
41
    private static final String KEY = "install_infofile_exception";
41
	private static final String KEY = "install_infofile_exception";
42 42

  
43
    /**
44
     * @see BaseException#BaseException(String, String, long)
45
     */
46
    public InstallerInfoFileException(String message) {
47
        super(message, KEY, serialVersionUID);
48
    }
43
	/**
44
	 * @see BaseException#BaseException(String, String, long)
45
	 */
46
	public InstallerInfoFileException(String message) {
47
		super(message, KEY, serialVersionUID);
48
	}
49 49

  
50
    /**
51
     * @see BaseException#BaseException(String, Throwable)
52
     */
53
    public InstallerInfoFileException(String message, Throwable cause) {
54
        super(message, cause, KEY, serialVersionUID);
55
    }
50
	/**
51
	 * @see BaseException#BaseException(String, Throwable)
52
	 */
53
	public InstallerInfoFileException(String message, Throwable cause) {
54
		super(message, cause, KEY, serialVersionUID);
55
	}
56 56

  
57
    /**
58
     * @see BaseException#BaseException(String, String, long)
59
     */
60
    public InstallerInfoFileException(String message, String key, long code) {
61
        super(message, key, code);
62
    }
57
	/**
58
	 * @see BaseException#BaseException(String, String, long)
59
	 */
60
	public InstallerInfoFileException(String message, String key, long code) {
61
		super(message, key, code);
62
	}
63 63

  
64 64
}

Also available in: Unified diff