- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Error
-
- java.lang.LinkageError
-
- java.lang.ClassFormatError
-
- java.lang.reflect.GenericSignatureFormatError
-
- All Implemented Interfaces:
-
Serializable
public class GenericSignatureFormatError extends ClassFormatError
当需要解释类型,方法或构造函数的通用签名信息的反射方法遇到语法错误的签名属性时抛出。- 从以下版本开始:
- 1.5
- 另请参见:
- Serialized Form
-
-
构造方法摘要
构造方法 Constructor 描述 GenericSignatureFormatError()
构造新的GenericSignatureFormatError
。GenericSignatureFormatError(String message)
构造一个新的GenericSignatureFormatError
与指定的消息。
-
方法摘要
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
构造方法详细信息
-
GenericSignatureFormatError
public GenericSignatureFormatError()
构造新的GenericSignatureFormatError
。
-
GenericSignatureFormatError
public GenericSignatureFormatError(String message)
构造一个新的GenericSignatureFormatError
与指定的消息。- 参数
-
message
- 详细信息,可以是null
-
-