|
![]() |
|||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use LinkageError | |
---|---|
java.lang | Provides classes that are fundamental to the design of the Java programming language. |
java.lang.reflect | Provides classes and interfaces for obtaining reflective information about classes and objects. |
Uses of LinkageError in java.lang |
---|
Subclasses of LinkageError in java.lang | |
---|---|
class |
AbstractMethodError
AbstractMethodError is an error thrown on a virtual or interface call to a method that is not implemented by the target instance due to a change in the super class that added a new abstract method. |
class |
ClassCircularityError
ClassCircularityError is a linkage error that is thrown when an inheritance circularity is found when loading a class. |
class |
ClassFormatError
ClassFormatError is a linkage error that is thrown when an a class could not be loaded since it does not respect the class file format. |
class |
ExceptionInInitializerError
An ExceptionInInitializerError is generated if an unhandled exception occurred in a static initializer of a class. |
class |
IllegalAccessError
IllegalAccessError is thrown by the virtual machine if an attempt is made to call a method or access a field whose access rights have changed such that the access is illegal now. |
class |
IncompatibleClassChangeError
IncompatibleClassChangeError is thrown by the virtual machine if a class C uses another class D and C was compiled against a different version of a D' of D that is incompatible. |
class |
InstantiationError
InstantiationError is an IncompatibleClassChangeError that is thrown by the VM if an attempt is made to instantiate an object of a class without having the required access rights (e.g., the constructor is private). |
class |
NoClassDefFoundError
NoClassDefFoundError is a linkage error that is thrown by the virtual machine if linking of a class failed since another class could not be loaded. |
class |
NoSuchFieldError
NoSuchFieldError is a linkage error that is thrown by the virtual machine if linking of a class failed since a referenced field is not found. |
class |
NoSuchMethodError
NoSuchMethodError is a linkage error that is thrown by the virtual machine if linking of a class failed since a referenced method is not found. |
class |
UnsatisfiedLinkError
UnsatisfiedLinkError is a linkage error that is thrown by the virtual machine if the implementation of a native function could not be found. |
class |
UnsupportedClassVersionError
UnsupportedClassVersionError is a linkage error that is thrown by the virtual machine if an attempt is made to load a class with a class file version that is not supported by the virtual machine. |
class |
VerifyError
VerifyError is a linkage error that is thrown if class file verification failed. |
Uses of LinkageError in java.lang.reflect |
---|
Subclasses of LinkageError in java.lang.reflect | |
---|---|
class |
GenericSignatureFormatError
Thrown when a syntactically malformed signature attribute is encountered by a reflective method that needs to interpret the generic signature information for a type, method or constructor. |
|
![]() |
|||||||||
PREV NEXT | FRAMES NO FRAMES |