Final

Uses of Class
java.lang.RuntimeException

Packages that use RuntimeException
java.lang   
java.lang.reflect   
java.rmi   
java.security   
java.util   
 

Uses of RuntimeException in java.lang
 

Subclasses of RuntimeException in java.lang
 class ArithmeticException
          This runtime exception is thrown when the an invalid arithmetic operation is attempted.
 class ArrayIndexOutOfBoundsException
          This runtime exception is thrown when the an array is indexed with a value less than zero, or greater than or equal to the size of the array.
 class ArrayStoreException
          This runtime exception is thrown when a program attempts to store into an array an element of a a type which the array can not hold..
 class ClassCastException
          This runtime exception is thrown when a program attempts to cast a an object to a type which it is not compatable with.
 class IllegalArgumentException
          This runtime exception is thrown when a method is invoked with an argument which it can not reasonably deal with.
 class IllegalMonitorStateException
          This runtime exception is thrown when a monitor operation is attempted when the monitor is not in the correct state, for example when a thread attempts to exit a monitor which it did not own.
 class IllegalStateException
          This runtime exception is thrown when an action is attempted at a time when the virtual machine is not in the correct state.
 class IllegalThreadStateException
          This runtime exception is thrown when an operation is attempted which is not possible given the state that the executing thread is in.
 class IndexOutOfBoundsException
          This runtime exception is thrown when a program attempts to access a value in an indexable collection using a value which is outside the possible range of indices.
 class NegativeArraySizeException
          This runtime exception is thrown when an attempt is made to create an array whose size would be less than zero.
 class NullPointerException
          This runtime exception is thrown when an attempt is made to access a field or method of an instance or an element of an array when there is no instance or array to use (i.e. the pointer is null).
 class NumberFormatException
          This runtime exception is thrown when a "string to number" conversion routine is passed an invalid value.
 class SecurityException
          This runtime exception is thrown when a security manager check fails.
 class StringIndexOutOfBoundsException
          This runtime exception is thrown when the a String is indexed with a value less than zero, or greater than or equal to the size of the array.
 class UnsupportedOperationException
          This runtime exception is thrown when an unsupported operation is attempted.
 

Uses of RuntimeException in java.lang.reflect
 

Subclasses of RuntimeException in java.lang.reflect
 class UndeclaredThrowableException
          This class provides a wrapper for an unexpected exception thrown by an InvocationHandler
 

Uses of RuntimeException in java.rmi
 

Subclasses of RuntimeException in java.rmi
 class RMISecurityException
          This is the security exception thrown by RMISecurityManager when a permission for an operation is not granted.
 

Uses of RuntimeException in java.security
 

Subclasses of RuntimeException in java.security
 class AccessControlException
          This runtime exception is thrown when an access control check indicates that access should not be granted.
 class InvalidParameterException
          This exception is thrown when an invalid parameter is passed to a method.
 class ProviderException
          This class represents runtime exceptions to be thrown by providers (of cryptographic services).
 

Uses of RuntimeException in java.util
 

Subclasses of RuntimeException in java.util
 class ConcurrentModificationException
          This runtime exception is thrown when a Collection is modified and an existing iterator on the Collection is used to modify the Collection as well.
 class EmptyStackException
          Runtime exception which is thrown when pop/peek method of stack is executed on a stack which is empty
 class MissingResourceException
          This runtime exception is thrown by ResourceBundle when a resouce bundle cannot be found or a resource is missing from a resource bundle.
 class NoSuchElementException
          This runtime exception is thrown when trying to retrieve an element past the end of an Enumeration, or the first or last element from an empty Vector.
 


Final

Licensed Materials - Property of IBM
(C) Copyright IBM Corp. 2006 All Rights Reserved.