Uses of Class
java.lang.Error

  • Uses of Error in java.io

    Subclasses of Error in java.io
    Modifier and Type Class Description
    class  IOError
    This error is thrown when a severe I/O error has happened.
  • Uses of Error in java.lang

    Subclasses of Error in java.lang
    Modifier and Type Class Description
    class  AbstractMethodError
    Thrown by the VM when an abstract method is called.
    class  AssertionError
    Thrown when an assertion has failed.
    class  ClassCircularityError
    Thrown when the VM notices that an attempt is made to load a class which would directly or indirectly inherit from one of its subclasses.
    class  ClassFormatError
    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.
    class  ExceptionInInitializerError
    Thrown when an exception occurs during class initialization.
    class  IllegalAccessError
    Thrown when the VM notices that a program tries access a field which is not accessible from where it is referenced.
    class  IncompatibleClassChangeError
    IncompatibleClassChangeError is the superclass of all classes which represent errors that occur when inconsistent class files are loaded into the same running image.
    class  InstantiationError
    Thrown when the VM notices that a program tries to create a new instance of a class which has no visible constructors from the location where new is invoked.
    class  InternalError
    Thrown when the VM notices that it has gotten into an undefined state.
    class  LinkageError
    LinkageError is the superclass of all error classes that occur when loading and linking class files.
    class  NoClassDefFoundError
    Thrown when the VM is unable to locate a class which it has been asked to load.
    class  NoSuchFieldError
    Thrown when the VM notices that a program tries to reference, on a class or object, a field that does not exist.
    class  NoSuchMethodError
    Thrown when the VM notices that a program tries to reference, on a class or object, a method that does not exist.
    class  OutOfMemoryError
    Thrown when a request for memory is made that can not be satisfied using the available platform resources.
    class  StackOverflowError
    Thrown when the depth of the stack of the running program exceeds some platform or VM specific limit.
    class  ThreadDeath
    ThreadDeath is thrown when a thread stops executing.
    class  UnknownError
    Thrown when the VM must throw an error which does not match any known exceptional condition.
    class  UnsatisfiedLinkError
    Thrown when an attempt is made to invoke a native for which an implementation could not be found.
    class  UnsupportedClassVersionError
    Thrown when an attempt is made to load a class with a format version that is not supported by the VM.
    class  VerifyError
    Thrown when the VM notices that an attempt is made to load a class which does not pass the class verification phase.
    class  VirtualMachineError
    VirtualMachineError is the superclass of all error classes that occur during the operation of the VM.
  • Uses of Error in java.lang.annotation

    Subclasses of Error in java.lang.annotation
    Modifier and Type Class Description
    class  AnnotationFormatError
    Indicates that an annotation in the binary representation of a class is syntactically incorrect and the annotation parser is unable to process it.
  • Uses of Error in java.lang.reflect

    Subclasses of Error in java.lang.reflect
    Modifier and Type Class Description
    class  GenericSignatureFormatError
    Indicates that a malformed signature has been encountered via a reflective method.
  • Uses of Error in java.nio.charset

    Subclasses of Error in java.nio.charset
    Modifier and Type Class Description
    class  CoderMalfunctionError
    A CoderMalfunctionError is thrown when the encoder/decoder is malfunctioning.
  • Uses of Error in java.util

    Subclasses of Error in java.util
    Modifier and Type Class Description
    class  ServiceConfigurationError
    Thrown when a service provider can't be loaded by ServiceLoader.
  • Uses of Error in java.util.zip

    Subclasses of Error in java.util.zip
    Modifier and Type Class Description
    class  ZipError
    Thrown when an unrecoverable zip error has occurred.
  • Uses of Error in javax.xml.parsers

    Subclasses of Error in javax.xml.parsers
    Modifier and Type Class Description
    class  FactoryConfigurationError
    Thrown when a problem with configuration with the Parser Factories exists.
  • Uses of Error in javax.xml.transform

    Subclasses of Error in javax.xml.transform
    Modifier and Type Class Description
    class  TransformerFactoryConfigurationError
    Thrown when a problem with configuration with the Transformer Factories exists.