Class RedactedValueException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.unboundid.util.LDAPSDKException
com.unboundid.ldap.sdk.unboundidds.logs.v2.syntax.LogSyntaxException
com.unboundid.ldap.sdk.unboundidds.logs.v2.syntax.RedactedValueException
- All Implemented Interfaces:
Serializable
@ThreadSafety(level=COMPLETELY_THREADSAFE)
public final class RedactedValueException
extends LogSyntaxException
This class defines an exception that may be used to indicate that a log field
value cannot be parsed in accordance with the associated syntax because
either the entire value or one or more of its components have been redacted.
NOTE: This class, and other classes within the
com.unboundid.ldap.sdk.unboundidds package structure, are only
supported for use against Ping Identity, UnboundID, and
Nokia/Alcatel-Lucent 8661 server products. These classes provide support
for proprietary functionality or for external specifications that are not
considered stable or mature enough to be guaranteed to work in an
interoperable way with other types of LDAP servers.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionRedactedValueException(String message) Creates a new instance of this exception with the provided message.RedactedValueException(String message, Throwable cause) Creates a new instance of this exception with the provided message and cause. -
Method Summary
Methods inherited from class com.unboundid.util.LDAPSDKException
getExceptionMessage, getExceptionMessage, toString, toStringMethods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace
-
Constructor Details
-
RedactedValueException
Creates a new instance of this exception with the provided message.- Parameters:
message- The message to use for this exception.
-
RedactedValueException
Creates a new instance of this exception with the provided message and cause.- Parameters:
message- The message to use for this exception.cause- The underlying cause for this exception. It may benullif no cause is available.
-