ClassFormatErrorpublic class ClassFormatError extends LinkageError Thrown by a class loader when a class file has an illegal format or if the
data that it contains can not be interpreted as a class. |
Fields Summary |
---|
private static final long | serialVersionUID |
Constructors Summary |
---|
public ClassFormatError()Constructs a new {@code ClassFormatError} that includes the current stack
trace.
super();
| public ClassFormatError(String detailMessage)Constructs a new {@code ClassFormatError} with the current stack trace
and the specified detail message.
super(detailMessage);
|
|