|
|||||||||
| Home >> All >> java >> [ lang overview ] | PREV NEXT | ||||||||
Uses of Class
java.lang.ClassFormatError
| Uses of ClassFormatError in java.lang |
| Subclasses of ClassFormatError in java.lang | |
class |
UnsupportedClassVersionError
An UnsupportedClassVersionError is thrown when the
Java Virtual Machine determines it does not support the major and minor
version numbers in the class file it is attempting to read. |
| Methods in java.lang that throw ClassFormatError | |
(package private) static Class |
VMClassLoader.defineClass(ClassLoader cl,
String name,
byte[] data,
int offset,
int len,
java.security.ProtectionDomain pd)
Helper to define a class using a string of bytes. |
protected Class |
ClassLoader.defineClass(byte[] data,
int offset,
int len)
Deprecated. use ClassLoader.defineClass(String, byte[], int, int) 55 instead |
protected Class |
ClassLoader.defineClass(String name,
byte[] data,
int offset,
int len)
Helper to define a class using a string of bytes without a ProtectionDomain. |
protected Class |
ClassLoader.defineClass(String name,
byte[] data,
int offset,
int len,
java.security.ProtectionDomain domain)
Helper to define a class using a string of bytes. |
protected Class |
ClassLoader.defineClass(String name,
java.nio.ByteBuffer buf,
java.security.ProtectionDomain domain)
Helper to define a class using the contents of a byte buffer. |
|
|||||||||
| Home >> All >> java >> [ lang overview ] | PREV NEXT | ||||||||