FileDocCategorySizeDatePackage
IllegalClassFormatException.javaAPI DocAndroid 1.5 API1837Wed May 06 22:41:02 BST 2009java.lang.instrument

IllegalClassFormatException

public class IllegalClassFormatException extends Exception
This exception may be thrown from implementations of the method {@link java.lang.instrument.ClassFileTransformer#transform} when the class file bytes supplied to it are found to be corrupted or otherwise in a format which does not adhere to the expected Java class file format.

Fields Summary
private static final long
serialVersionUID
Constructors Summary
public IllegalClassFormatException()
Constructs a new instance of IllegalClassFormatException with no explanatory message.


                   
      
        super();
    
public IllegalClassFormatException(String s)
Constructs a new instance of IllegalClassFormatException with the supplied message, s, for explanation.

param
s a string containing information on why the exception is being created.

        super(s);
    
Methods Summary