aicas logoJamaica 6.4 release 1

Uses of Class
java.lang.Error

Packages that use Error
com.aicas.jamaica.lang Provides classes that are specific to JamaicaVM including access to the CPU timer, debugging support, and an API for generating and dumping profiles. 
java.awt Contains all of the classes for creating user interfaces and for painting graphics and images. 
java.io Provides for system input and output through data streams, serialization and the file system. 
java.lang Provides classes that are fundamental to the design of the Java programming language. 
java.lang.annotation Provides library support for the Java programming language annotation facility. 
java.lang.reflect Provides classes and interfaces for obtaining reflective information about classes and objects. 
java.nio.charset Defines charsets, decoders, and encoders, for translating between bytes and Unicode characters. 
java.rmi Provides the RMI package. 
java.util Contains the collections framework, legacy collection classes, event model, date and time facilities, internationalization, and miscellaneous utility classes (a string tokenizer, a random-number generator, and a bit array). 
java.util.zip Provides classes for reading and writing the standard ZIP and GZIP file formats. 
javax.management Provides the core classes for the Java Management Extensions. 
javax.management.remote Interfaces for remote access to JMX MBean servers. 
javax.realtime Jamaica's implementation of the Real-Time Specification for Java. 
javax.xml.parsers Provides classes allowing the processing of XML documents. 
javax.xml.transform This package defines the generic APIs for processing transformation instructions, and performing a transformation from source to result. 
 

Uses of Error in com.aicas.jamaica.lang
 

Subclasses of Error in com.aicas.jamaica.lang
 class AsynchronouslyInterruptedError
          AsynchronouslyInterruptedError is thrown in places where AsynchronouslyInterruptedException should be thrown but cannot.
 class DeadLockError
           
 

Uses of Error in java.awt
 

Subclasses of Error in java.awt
 class AWTError
          Thrown when a serious Abstract Window Toolkit error has occurred.
 

Uses of Error in java.io
 

Subclasses of Error in java.io
 class IOError
          Thrown when a serious I/O error has occurred.
 

Uses of Error in java.lang
 

Subclasses of Error 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 AssertionError
          An AssertionError represents an assertion that failed.
 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 InternalError
          InternalError is a super class for severe error conditions in the system, e.g.
 class LinkageError
          LinkageError is thrown if linking of a class failed, i.e., another class that is needed by this class is missing or does not declare a field or method that is required.
 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 OutOfMemoryError
          An OutOfMemoryException is a signal from the virtual machine that a memory allocation has failed because not enough free memory was available.
 class StackOverflowError
          StackOverflowError is a virtual machine error that is thrown by the virtual machine if a thread's runtime stack overflows due to a too deep nesting of method calls.
 class ThreadDeath
          ThreadDeath is thrown in a stopped thread when Thread.stop() is called on this thread.
 class UnknownError
          UnknownError is a virtual machine error that is thrown by the virtual machine if an error of unknown origin occurred.
 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.
 class VirtualMachineError
          VirtualMachineError is a super class for error conditions that originate in the virtual machine, such as out of memory or class loading and linking problems.
 

Uses of Error in java.lang.annotation
 

Subclasses of Error in java.lang.annotation
 class AnnotationFormatError
          Thrown when the annotation parser attempts to read an annotation from a class file and determines that the annotation is malformed.
 

Uses of Error in java.lang.reflect
 

Subclasses of Error 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.
 

Uses of Error in java.nio.charset
 

Subclasses of Error in java.nio.charset
 class CoderMalfunctionError
          Error thrown when the decodeLoop method of a CharsetDecoder, or the encodeLoop method of a CharsetEncoder, throws an unexpected exception.
 

Uses of Error in java.rmi
 

Constructors in java.rmi with parameters of type Error
ServerError(String s, Error err)
          Constructs a ServerError with the specified detail message and nested error.
 

Uses of Error in java.util
 

Subclasses of Error in java.util
 class ServiceConfigurationError
          Error thrown when something goes wrong while loading a service provider.
 

Uses of Error in java.util.zip
 

Subclasses of Error in java.util.zip
 class ZipError
          Signals that an unrecoverable error has occurred.
 

Uses of Error in javax.management
 

Methods in javax.management that return Error
 Error RuntimeErrorException.getTargetError()
          Returns the actual Error thrown.
 

Constructors in javax.management with parameters of type Error
RuntimeErrorException(Error e)
          Default constructor.
RuntimeErrorException(Error e, String message)
          Constructor that allows a specific error message to be specified.
 

Uses of Error in javax.management.remote
 

Constructors in javax.management.remote with parameters of type Error
JMXServerErrorException(String s, Error err)
          Constructs a JMXServerErrorException with the specified detail message and nested error.
 

Uses of Error in javax.realtime
 

Subclasses of Error in javax.realtime
 class IllegalAssignmentError
          Jamaica Real-Time Specification for Java class IllegalAssignmentError.
 class MemoryAccessError
           Jamaica Real-Time Specification for Java class MemoryAccessError.
 class ResourceLimitError
           Jamaica Real-Time Specification for Java class ResourceLimitError.
 class ThrowBoundaryError
           Jamaica Real-Time Specification for Java class ThrowBoundaryError.
 

Uses of Error in javax.xml.parsers
 

Subclasses of Error in javax.xml.parsers
 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
 class TransformerFactoryConfigurationError
          Thrown when a problem with configuration with the Transformer Factories exists.
 


aicas logoJamaica 6.4 release 1

aicas GmbH, Karlsruhe, Germany —www.aicas.com
Copyright © 2001-2015 aicas GmbH. All Rights Reserved.