java.lang.instrument
Class IllegalClassFormatException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.instrument.IllegalClassFormatException
- All Implemented Interfaces:
- Serializable

public class IllegalClassFormatException
- extends Exception

Thrown by an implementation of
ClassFileTransformer.transform
when its input parameters are invalid.
This may occur either because the initial class file bytes were
invalid or a previously applied transform corrupted the bytes.
- Since:
- JDK1.5
- See Also:
ClassFileTransformer.transform(java.lang.ClassLoader, java.lang.String, java.lang.Class>, java.security.ProtectionDomain, byte[])
,
Serialized Form
Methods inherited from class java.lang.Throwable  |
fillInStackTrace , getCause , getLocalizedMessage , getMessage , getStackTrace , initCause , printStackTrace , printStackTrace , printStackTrace , setStackTrace , toString  |
IllegalClassFormatException

public IllegalClassFormatException()
- Constructs an
IllegalClassFormatException with no
detail message.
IllegalClassFormatException

public IllegalClassFormatException(String
s)
- Constructs an
IllegalClassFormatException with the
specified detail message.
- Parameters:
s - the detail message.