- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.instrument.IllegalClassFormatException
-
- All Implemented Interfaces:
-
Serializable
public class IllegalClassFormatException extends 异常
当其输入参数无效时,通过执行ClassFileTransformer.transform
抛出。 这可能是因为初始类文件字节无效或先前应用的转换损坏了字节。
-
-
构造方法摘要
构造方法 Constructor 描述 IllegalClassFormatException()
构造一个IllegalClassFormatException
,没有详细信息。IllegalClassFormatException(String s)
构造具有指定详细消息的IllegalClassFormatException
。
-
方法摘要
-
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
-
-
-
-
构造方法详细信息
-
IllegalClassFormatException
public IllegalClassFormatException()
构造一个IllegalClassFormatException
,没有详细消息。
-
IllegalClassFormatException
public IllegalClassFormatException(String s)
构造具有指定详细消息的IllegalClassFormatException
。- 参数
-
s
- 详细信息。
-
-