| | |
| | | * |
| | | * |
| | | * Copyright 2008 Sun Microsystems, Inc. |
| | | * Portions Copyright 2015 ForgeRock AS. |
| | | */ |
| | | package org.forgerock.opendj.config.client; |
| | | |
| | |
| | | /** The type of operation that caused this exception. */ |
| | | private final OperationType type; |
| | | |
| | | /** |
| | | * The user friendly name of the component that caused this |
| | | * exception. |
| | | */ |
| | | /** The user friendly name of the component that caused this exception. */ |
| | | private final LocalizableMessage ufn; |
| | | |
| | | /** |
| | |
| | | Collection<LocalizableMessage> messages) { |
| | | super(getDefaultMessage(messages)); |
| | | |
| | | this.messages = new ArrayList<LocalizableMessage>(messages); |
| | | this.messages = new ArrayList<>(messages); |
| | | this.type = type; |
| | | this.ufn = ufn; |
| | | } |