ClassFormatError

public class ClassFormatError extends LinkageError
Known Direct Subclasses

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.

Public Constructor Summary

ClassFormatError()
Constructs a ClassFormatError with no detail message.
ClassFormatError(String s)
Constructs a ClassFormatError with the specified detail message.

Inherited Method Summary

Public Constructors

public ClassFormatError ()

Constructs a ClassFormatError with no detail message.

public ClassFormatError (String s)

Constructs a ClassFormatError with the specified detail message.

Parameters
s the detail message.