Package java.lang
Class RuntimeException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
AndroidRuntimeException,AnnotationTypeMismatchException,ArithmeticException,ArrayStoreException,BlockGuard.BlockGuardPolicyException,BufferOverflowException,BufferUnderflowException,ClassCastException,ConcurrentModificationException,CursorWindowAllocationException,DatabaseObjectNotClosedException,DOMException,EmptyStackException,EnumConstantNotPresentException,ExceptionWithContext,GaiException,ICUException,ICUUncheckedIOException,IllegalArgumentException,IllegalMonitorStateException,IllegalStateException,IllformedLocaleException,IllformedLocaleException,IncompleteAnnotationException,IndexOutOfBoundsException,LSException,MalformedParameterizedTypeException,MissingResourceException,NegativeArraySizeException,NetworkOnMainThreadException,NoSuchElementException,NullPointerException,OperationCanceledException,ProviderException,RejectedExecutionException,Resources.NotFoundException,RuntimeCryptoException,SecurityException,SQLException,StaleDataException,StoreException,TypeNotPresentException,UndeclaredThrowableException,UnsupportedOperationException,UResourceTypeMismatchException
public class RuntimeException extends Exception
RuntimeExceptionis the superclass of all classes that represent exceptional conditions which occur as a result of executing an application in the VM. Unlike checked exceptions (exceptions where the type doesn't extendRuntimeExceptionorError), the compiler does not require code to handle runtime exceptions.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description RuntimeException()Constructs a newRuntimeExceptionthat includes the current stack trace.RuntimeException(String detailMessage)Constructs a newRuntimeExceptionwith the current stack trace and the specified detail message.RuntimeException(String detailMessage, Throwable throwable)Constructs a newRuntimeExceptionwith the current stack trace, the specified detail message and the specified cause.RuntimeException(Throwable throwable)Constructs a newRuntimeExceptionwith the current stack trace and the specified cause.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
RuntimeException
public RuntimeException()
Constructs a newRuntimeExceptionthat includes the current stack trace.
-
RuntimeException
public RuntimeException(String detailMessage)
Constructs a newRuntimeExceptionwith the current stack trace and the specified detail message.- Parameters:
detailMessage- the detail message for this exception.
-
RuntimeException
public RuntimeException(String detailMessage, Throwable throwable)
Constructs a newRuntimeExceptionwith the current stack trace, the specified detail message and the specified cause.- Parameters:
detailMessage- the detail message for this exception.throwable- the cause of this exception.
-
RuntimeException
public RuntimeException(Throwable throwable)
Constructs a newRuntimeExceptionwith the current stack trace and the specified cause.- Parameters:
throwable- the cause of this exception.
-
-