Class LogSyntaxException

  • All Implemented Interfaces:
    java.io.Serializable
    Direct Known Subclasses:
    RedactedValueException, TokenizedValueException

    @NotExtensible
    @ThreadSafety(level=INTERFACE_THREADSAFE)
    public class LogSyntaxException
    extends LDAPSDKException
    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.
    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:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      LogSyntaxException​(java.lang.String message)
      Creates a new instance of this exception with the provided message.
      LogSyntaxException​(java.lang.String message, java.lang.Throwable cause)
      Creates a new instance of this exception with the provided message and cause.
    • Method Summary

      • Methods inherited from class java.lang.Throwable

        addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • LogSyntaxException

        public LogSyntaxException​(@NotNull
                                  java.lang.String message)
        Creates a new instance of this exception with the provided message.
        Parameters:
        message - The message to use for this exception.
      • LogSyntaxException

        public LogSyntaxException​(@NotNull
                                  java.lang.String message,
                                  @Nullable
                                  java.lang.Throwable cause)
        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 be null if no cause is available.