Revision 37599 branches/v2_0_0_prep/extensions/org.gvsig.installer/org.gvsig.installer.swing/org.gvsig.installer.swing.api/src/main/java/org/gvsig/installer/swing/api/execution/InstallPackageWizardException.java

View differences:

InstallPackageWizardException.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 execution of an installer using the wizard.
33
 * Base exception for all the exceptions that are thrown by the process of
34
 * execution of an installer using the wizard.
35 35
 * 
36 36
 * @author <a href="mailto:jpiera@gvsig.org">Jorge Piera Llodr&aacute;</a>
37 37
 */
38 38
public class InstallPackageWizardException extends BaseException {
39 39

  
40
    private static final long serialVersionUID = -5480466569496849255L;
41
    private static final String KEY = "installer_execution_exception";
40
	private static final long serialVersionUID = -5480466569496849255L;
41
	private static final String KEY = "installer_execution_exception";
42 42

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

Also available in: Unified diff