| | |
| | | |
| | | |
| | | |
| | | import org.opends.sdk.LocalizedIllegalArgumentException; |
| | | import org.opends.sdk.LocalizableMessage; |
| | | |
| | | import org.opends.sdk.LocalizedIllegalArgumentException; |
| | | |
| | | |
| | | |
| | | /** |
| | | * Thrown when addition of a schema element to a schema builder fails |
| | | * because the OID of the schema element conflicts with an existing |
| | | * schema element and the caller explicitly requested not to override |
| | | * existing schema elements. |
| | | * Thrown when addition of a schema element to a schema builder fails because |
| | | * the OID of the schema element conflicts with an existing schema element and |
| | | * the caller explicitly requested not to override existing schema elements. |
| | | */ |
| | | @SuppressWarnings("serial") |
| | | public class ConflictingSchemaElementException extends |
| | | LocalizedIllegalArgumentException |
| | | { |
| | | /** |
| | | * Creates a new conflicting schema element exception with the |
| | | * provided message. |
| | | * |
| | | * Creates a new conflicting schema element exception with the provided |
| | | * message. |
| | | * |
| | | * @param message |
| | | * The message that explains the problem that occurred. |
| | | */ |
| | | public ConflictingSchemaElementException(LocalizableMessage message) |
| | | public ConflictingSchemaElementException(final LocalizableMessage message) |
| | | { |
| | | super(message); |
| | | } |