FileDocCategorySizeDatePackage
ClassFormatError.javaAPI DocJava SE 5 API864Fri Aug 26 14:57:02 BST 2005java.lang

ClassFormatError

public class ClassFormatError extends LinkageError
Thrown when the Java Virtual Machine attempts to read a class file and determines that the file is malformed or otherwise cannot be interpreted as a class file.
author
unascribed
version
1.20, 12/19/03
since
JDK1.0

Fields Summary
Constructors Summary
public ClassFormatError()
Constructs a ClassFormatError with no detail message.

	super();
    
public ClassFormatError(String s)
Constructs a ClassFormatError with the specified detail message.

param
s the detail message.

	super(s);
    
Methods Summary