| 
 | JavaTM 2 Platform Std. Ed. v1.3.1 | |||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use RuntimeException | |
| java.awt | Contains all of the classes for creating user interfaces and for painting graphics and images. | 
| java.awt.color | Provides classes for color spaces. | 
| java.awt.dnd | Drag and Drop is a direct manipulation gesture found in many Graphical User Interface systems that provides a mechanism to transfer information between two entities logically associated with presentation elements in the GUI. | 
| java.awt.geom | Provides the Java 2D classes for defining and performing operations on objects related to two-dimensional geometry. | 
| java.awt.image | Provides classes for creating and modifying images. | 
| 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. | 
| java.rmi | Provides the RMI package. | 
| java.security | Provides the classes and interfaces for the security framework. | 
| 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). | 
| javax.swing.undo | Provides support for undo/redo capabilities in an application such as a text editor. | 
| org.omg.CORBA | Provides the mapping of the OMG CORBA APIs to the JavaTM programming language, including the class ORB, which is implemented so that a programmer can use it as a fully-functional Object Request Broker (ORB). | 
| org.omg.CORBA.portable | Provides a portability layer, that is, a set of ORB APIs that makes it possible for code generated by one vendor to run on another vendor's ORB. | 
| Uses of RuntimeException in java.awt | 
| Subclasses of RuntimeException in java.awt | |
|  class | IllegalComponentStateExceptionSignals that an AWT component is not in an appropriate state for the requested operation. | 
| Uses of RuntimeException in java.awt.color | 
| Subclasses of RuntimeException in java.awt.color | |
|  class | CMMExceptionThis exception is thrown if the native CMM returns an error. | 
|  class | ProfileDataExceptionThis exception is thrown when an error occurs in accessing or processing an ICC_Profile object. | 
| Uses of RuntimeException in java.awt.dnd | 
| Subclasses of RuntimeException in java.awt.dnd | |
|  class | InvalidDnDOperationExceptionThis exception is thrown by various methods in the java.awt.dnd package. | 
| Uses of RuntimeException in java.awt.geom | 
| Subclasses of RuntimeException in java.awt.geom | |
|  class | IllegalPathStateExceptionThe IllegalPathStateExceptionrepresents an 
 exception that is thrown if an operation is performed on a path 
 that is in an illegal state with respect to the particular
 operation being performed, such as appending a path segment 
 to aGeneralPathwithout an initial moveto. | 
| Uses of RuntimeException in java.awt.image | 
| Subclasses of RuntimeException in java.awt.image | |
|  class | ImagingOpExceptionThe ImagingOpExceptionis thrown if one of theBufferedImageOporRasterOpfilter methods cannot
 process the image. | 
|  class | RasterFormatExceptionThe RasterFormatExceptionis thrown if there is
 invalid layout information in theRaster. | 
| Uses of RuntimeException in java.lang | 
| Subclasses of RuntimeException in java.lang | |
|  class | ArithmeticExceptionThrown when an exceptional arithmetic condition has occurred. | 
|  class | ArrayIndexOutOfBoundsExceptionThrown to indicate that an array has been accessed with an illegal index. | 
|  class | ArrayStoreExceptionThrown to indicate that an attempt has been made to store the wrong type of object into an array of objects. | 
|  class | ClassCastExceptionThrown to indicate that the code has attempted to cast an object to a subclass of which it is not an instance. | 
|  class | IllegalArgumentExceptionThrown to indicate that a method has been passed an illegal or inappropriate argument. | 
|  class | IllegalMonitorStateExceptionThrown to indicate that a thread has attempted to wait on an object's monitor or to notify other threads waiting on an object's monitor without owning the specified monitor. | 
|  class | IllegalStateExceptionSignals that a method has been invoked at an illegal or inappropriate time. | 
|  class | IllegalThreadStateExceptionThrown to indicate that a thread is not in an appropriate state for the requested operation. | 
|  class | IndexOutOfBoundsExceptionThrown to indicate that an index of some sort (such as to an array, to a string, or to a vector) is out of range. | 
|  class | NegativeArraySizeExceptionThrown if an application tries to create an array with negative size. | 
|  class | NullPointerExceptionThrown when an application attempts to use nullin a 
 case where an object is required. | 
|  class | NumberFormatExceptionThrown to indicate that the application has attempted to convert a string to one of the numeric types, but that the string does not have the appropriate format. | 
|  class | SecurityExceptionThrown by the security manager to indicate a security violation. | 
|  class | StringIndexOutOfBoundsExceptionThrown by the charAtmethod in classStringand by otherStringmethods to indicate that an index is either negative or greater 
 than or equal to the size of the string. | 
|  class | UnsupportedOperationExceptionThrown to indicate that the requested operation is not supported. | 
| Uses of RuntimeException in java.lang.reflect | 
| Subclasses of RuntimeException in java.lang.reflect | |
|  class | UndeclaredThrowableExceptionThrown by a method invocation on a proxy instance if its invocation handler's invokemethod throws a
 checked exception (aThrowablethat is not assignable
 toRuntimeExceptionorError) that
 is not assignable to any of the exception types declared in thethrowsclause of the method that was invoked on the
 proxy instance and dispatched to the invocation handler. | 
| Uses of RuntimeException in java.rmi | 
| Subclasses of RuntimeException in java.rmi | |
|  class | RMISecurityExceptionDeprecated. no replacement. RMISecurityManagerno longer
 throws this subclass ofjava.lang.SecurityException. | 
| Uses of RuntimeException in java.security | 
| Subclasses of RuntimeException in java.security | |
|  class | AccessControlExceptionThis exception is thrown by the AccessController to indicate that a requested access (to a critical system resource such as the file system or the network) is denied. | 
|  class | InvalidParameterExceptionThis exception is thrown when an invalid parameter is passed to a method. | 
|  class | ProviderExceptionA runtime exception for Provider exceptions (such as misconfiguration errors), which may be subclassed by Providers to throw specialized, provider-specific runtime errors. | 
| Uses of RuntimeException in java.util | 
| Subclasses of RuntimeException in java.util | |
|  class | ConcurrentModificationExceptionThis exception may be thrown by methods that have detected concurrent modification of a backing object when such modification is not permissible. | 
|  class | EmptyStackExceptionThrown by methods in the Stackclass to indicate 
 that the stack is empty. | 
|  class | MissingResourceExceptionSignals that a resource is missing. | 
|  class | NoSuchElementExceptionThrown by the nextElementmethod of anEnumerationto indicate that there are no more 
 elements in the enumeration. | 
| Uses of RuntimeException in javax.swing.undo | 
| Subclasses of RuntimeException in javax.swing.undo | |
|  class | CannotRedoExceptionThrown when an UndoableEdit is told to redo()and can't. | 
|  class | CannotUndoExceptionThrown when an UndoableEdit is told to undo()and can't. | 
| Uses of RuntimeException in org.omg.CORBA | 
| Subclasses of RuntimeException in org.omg.CORBA | |
|  class | BAD_CONTEXTThe CORBA BAD_CONTEXTexception, which is thrown when there is
 an error processing a context object. | 
|  class | BAD_INV_ORDERThe CORBA BAD_INV_ORDERexception, which is thrown
 when methods are called out of order. | 
|  class | BAD_OPERATIONThe CORBA BAD_OPERATIONexception, which is thrown
 when a method is invalid. | 
|  class | BAD_PARAMThe CORBA BAD_PARAMexception, which is thrown
 when an invalid parameter is passed to a method. | 
|  class | BAD_TYPECODEThe CORBA BAD_TYPECODEexception, which is thrown
 when the specified typecode is invalid. | 
|  class | COMM_FAILUREThe CORBA COMM_FAILUREexception, which is thrown
 when there is a communication failure. | 
|  class | DATA_CONVERSIONThe CORBA DATA_CONVERSIONexception, which is thrown
 when there is a data conversion error. | 
|  class | FREE_MEMThe CORBA FREE_MEMexception, which is thrown
 when the system is unable to free memory. | 
|  class | IMP_LIMITThe CORBA IMP_LIMITexception, which is thrown
 when the implementation limit has been violated. | 
|  class | INITIALIZEThe CORBA INITIALIZEexception, which is thrown
 when there is an ORB initialization error. | 
|  class | INTERNALThe CORBA INTERNALexception, which is thrown
 when there is an ORB internal error. | 
|  class | INTF_REPOSThe CORBA INTF_REPOSexception, which is thrown
 when there is an error accessing the interface repository. | 
|  class | INV_FLAGThe CORBA INV_FLAGexception, which is thrown
 when an invalid flag is specified. | 
|  class | INV_IDENTThe CORBA INV_IDENTexception, which is thrown
 when identifier syntax is invalid. | 
|  class | INV_OBJREFThe CORBA INV_OBJREFexception, which is thrown
 when an invalid object reference is specified. | 
|  class | INV_POLICYThe CORBA INV_POLICYstandard exception, which is thrown
 when an invocation cannot be made because of an incompatibility between 
 Policy overrides. | 
|  class | INVALID_TRANSACTIONThe CORBA INVALID_TRANSACTIONexception, which is thrown
 when there is a transaction error. | 
|  class | MARSHALThe CORBA MARSHALexception, which is thrown
 when the ORB has a problem marshalling or unmarshalling parameters. | 
|  class | NO_IMPLEMENTThe CORBA NO_IMPLEMENTexception, which is thrown
 when the implementation for a method is not available. | 
|  class | NO_MEMORYThe CORBA NO_MEMORYexception, which may be thrown
 by either the client or the server
 when there is not enough memory for a dynamic memory allocation. | 
|  class | NO_PERMISSIONThe CORBA NO_PERMISSIONexception, which is thrown
 if the client does not have permission to perform the request. | 
|  class | NO_RESOURCESThe CORBA NO_RESOURCESexception, which is thrown
 when either the client or the server does not have sufficient resources
 to perform the request. | 
|  class | NO_RESPONSEThe CORBA NO_RESPONSEexception, which is thrown
 when a response to the request is not yet available. | 
|  class | OBJ_ADAPTERThe CORBA OBJ_ADAPTERexception, which is thrown
 by the object adapter on the server to indicate some error. | 
|  class | OBJECT_NOT_EXISTThe CORBA OBJECT_NOT_EXISTexception, which is usually thrown
 from the server to indicate that the target object does not exist. | 
|  class | PERSIST_STOREThe CORBA PERSIST_STOREexception, which is thrown
 when there is an error with the persistent storage on the server. | 
|  class | SystemExceptionThe root class for all CORBA standard exceptions. | 
|  class | TRANSACTION_REQUIREDThe CORBA TRANSACTION_REQUIREDexception, which is thrown
 by the ORB on the client or server during the
 processing of a request that
 is required to be enclosed in a transaction. | 
|  class | TRANSACTION_ROLLEDBACKThe CORBA TRANSACTION_ROLLEDBACKexception, which is thrown
 when a transactional operation did not complete
 because the transaction was rolled back. | 
|  class | TRANSIENTThe CORBA TRANSIENTexception, which is thrown
 by the server to signal a transient failure
 that might not occur again if the request is retried. | 
|  class | UNKNOWNThe CORBA UNKNOWNexception, which is thrown when there is
 an error whose cause is unknown to the ORB. | 
| Uses of RuntimeException in org.omg.CORBA.portable | 
| Subclasses of RuntimeException in org.omg.CORBA.portable | |
|  class | IndirectionExceptionThe Indirection exception is a Java specific system exception. | 
|  class | UnknownExceptionThe org.omg.CORBA.portable.UnknownException is used for reporting unknown exceptions between ties and ORBs and between ORBs and stubs. | 
| 
 | JavaTM 2 Platform Std. Ed. v1.3.1 | |||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
Java, Java 2D, and JDBC are trademarks or registered trademarks of Sun Microsystems, Inc. in the US and other countries.
Copyright 1993-2001 Sun Microsystems, Inc. 901 San Antonio Road
Palo Alto, California, 94303, U.S.A.  All Rights Reserved.