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/MakePackageServiceException.java

View differences:

MakePackageServiceException.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 39
public class MakePackageServiceException extends BaseException {
40 40

  
41
    /**
41
	/**
42 42
     * 
43 43
     */
44
    private static final long serialVersionUID = -5549105047582975720L;
45
    private static final String KEY = "make_package_exception";
46
    private static final String MSG = "_Cant_create_package";
44
	private static final long serialVersionUID = -5549105047582975720L;
45
	private static final String KEY = "make_package_exception";
46
	private static final String MSG = "_Cant_create_package";
47 47

  
48
    /**
49
     * @see BaseException#BaseException(String, String, long)
50
     */
51
    public MakePackageServiceException() {
52
        super(MSG, KEY, serialVersionUID);
53
    }
48
	/**
49
	 * @see BaseException#BaseException(String, String, long)
50
	 */
51
	public MakePackageServiceException() {
52
		super(MSG, KEY, serialVersionUID);
53
	}
54 54

  
55
    /**
56
     * @see BaseException#BaseException(String, Throwable, String, long)
57
     */
58
    public MakePackageServiceException(Throwable cause) {
59
        super(MSG, cause, KEY, serialVersionUID);
60
    }
55
	/**
56
	 * @see BaseException#BaseException(String, Throwable, String, long)
57
	 */
58
	public MakePackageServiceException(Throwable cause) {
59
		super(MSG, cause, KEY, serialVersionUID);
60
	}
61 61

  
62
    /**
63
     * @see BaseException#BaseException(String, String, long)
64
     */
65
    protected MakePackageServiceException(String message, String key,
66
        long serialVersion) {
67
        super(message, key, serialVersion);
68
    }
62
	/**
63
	 * @see BaseException#BaseException(String, String, long)
64
	 */
65
	protected MakePackageServiceException(String message, String key,
66
			long serialVersion) {
67
		super(message, key, serialVersion);
68
	}
69 69

  
70
    /**
71
     * @see BaseException#BaseException(String, Throwable, String, long)
72
     */
73
    protected MakePackageServiceException(String message, Throwable cause,
74
        String key, long serialVersion) {
75
        super(message, cause, key, serialVersion);
76
    }
70
	/**
71
	 * @see BaseException#BaseException(String, Throwable, String, long)
72
	 */
73
	protected MakePackageServiceException(String message, Throwable cause,
74
			String key, long serialVersion) {
75
		super(message, cause, key, serialVersion);
76
	}
77 77

  
78 78
}

Also available in: Unified diff