| File was renamed from opends/src/quicksetup/org/opends/quicksetup/installer/UserInstallDataException.java |
| | |
| | | * Portions Copyright 2006-2007 Sun Microsystems, Inc. |
| | | */ |
| | | |
| | | package org.opends.quicksetup.installer; |
| | | |
| | | import org.opends.quicksetup.Step; |
| | | package org.opends.quicksetup; |
| | | |
| | | /** |
| | | * This exception is used when there is an error with the data provided by |
| | |
| | | * the user data (QuickSetup). |
| | | * |
| | | */ |
| | | public class UserInstallDataException extends Exception |
| | | public class UserDataException extends Exception |
| | | { |
| | | private static final long serialVersionUID = 1798143194655443132L; |
| | | |
| | |
| | | private String localizedMessage; |
| | | |
| | | /** |
| | | * Constructor for UserInstallDataException. |
| | | * Constructor for UserDataException. |
| | | * @param step the step in the wizard where the exception occurred. |
| | | * @param localizedMessage the localized message describing the error. |
| | | */ |
| | | public UserInstallDataException(Step step, String localizedMessage) |
| | | public UserDataException(Step step, String localizedMessage) |
| | | { |
| | | super(localizedMessage); |
| | | this.step = step; |