类 InvalidSyntaxException

  • 所有已实现的接口:
    java.io.Serializable

    public class InvalidSyntaxException
    extends java.lang.Exception
    A Framework exception used to indicate that a filter string has an invalid syntax.

    An InvalidSyntaxException object indicates that a filter string parameter has an invalid syntax and cannot be parsed. See Filter for a description of the filter string syntax.

    This exception conforms to the general purpose exception chaining mechanism.

    作者:
    $Id: 59696296eff1574fa844e3a0a975ba6c83ec59af $
    另请参阅:
    序列化表格
    • 构造器概要

      构造器 
      构造器 说明
      InvalidSyntaxException​(java.lang.String msg, java.lang.String filter)
      Creates an exception of type InvalidSyntaxException.
      InvalidSyntaxException​(java.lang.String msg, java.lang.String filter, java.lang.Throwable cause)
      Creates an exception of type InvalidSyntaxException.
    • 方法概要

      所有方法 实例方法 具体方法 
      修饰符和类型 方法 说明
      java.lang.Throwable getCause()
      Returns the cause of this exception or null if no cause was set.
      java.lang.String getFilter()
      Returns the filter string that generated the InvalidSyntaxException object.
      java.lang.Throwable initCause​(java.lang.Throwable cause)
      Initializes the cause of this exception to the specified value.
      • 从类继承的方法 java.lang.Throwable

        addSuppressed, fillInStackTrace, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
      • 从类继承的方法 java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • 构造器详细资料

      • InvalidSyntaxException

        public InvalidSyntaxException​(java.lang.String msg,
                                      java.lang.String filter)
        Creates an exception of type InvalidSyntaxException.

        This method creates an InvalidSyntaxException object with the specified message and the filter string which generated the exception.

        参数:
        msg - The message.
        filter - The invalid filter string.
      • InvalidSyntaxException

        public InvalidSyntaxException​(java.lang.String msg,
                                      java.lang.String filter,
                                      java.lang.Throwable cause)
        Creates an exception of type InvalidSyntaxException.

        This method creates an InvalidSyntaxException object with the specified message and the filter string which generated the exception.

        参数:
        msg - The message.
        filter - The invalid filter string.
        cause - The cause of this exception.
        从以下版本开始:
        1.3
    • 方法详细资料

      • getCause

        public java.lang.Throwable getCause()
        Returns the cause of this exception or null if no cause was set.
        覆盖:
        getCause 在类中 java.lang.Throwable
        返回:
        The cause of this exception or null if no cause was set.
        从以下版本开始:
        1.3
      • initCause

        public java.lang.Throwable initCause​(java.lang.Throwable cause)
        Initializes the cause of this exception to the specified value.
        覆盖:
        initCause 在类中 java.lang.Throwable
        参数:
        cause - The cause of this exception.
        返回:
        This exception.
        抛出:
        java.lang.IllegalArgumentException - If the specified cause is this exception.
        java.lang.IllegalStateException - If the cause of this exception has already been set.
        从以下版本开始:
        1.3