public
class
ClassFormatError
extends LinkageError
java.lang.Object | ||||
↳ | java.lang.Throwable | |||
↳ | java.lang.Error | |||
↳ | java.lang.LinkageError | |||
↳ | java.lang.ClassFormatError |
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 constructors | |
---|---|
ClassFormatError()
Constructs a |
|
ClassFormatError(String s)
Constructs a |
Inherited methods | |
---|---|
![]()
java.lang.Throwable
| |
![]()
java.lang.Object
|
ClassFormatError ()
Constructs a ClassFormatError
with no detail message.
ClassFormatError (String s)
Constructs a ClassFormatError
with the specified
detail message.
Parameters | |
---|---|
s |
String :
the detail message.
|