| | |
| | | */ |
| | | package org.opends.server.protocols.asn1; |
| | | |
| | | import org.opends.messages.Message; |
| | | import org.forgerock.i18n.LocalizableMessage; |
| | | |
| | | |
| | | |
| | |
| | | * |
| | | * @param message The message that explains the problem that occurred. |
| | | */ |
| | | public ASN1Exception(Message message) |
| | | public ASN1Exception(LocalizableMessage message) |
| | | { |
| | | super(message); |
| | | } |
| | |
| | | * @param message The message that explains the problem that occurred. |
| | | * @param cause The exception that was caught to trigger this exception. |
| | | */ |
| | | public ASN1Exception(Message message, Throwable cause) |
| | | public ASN1Exception(LocalizableMessage message, Throwable cause) |
| | | { |
| | | super(message, cause); |
| | | } |