Class java.lang.RuntimeException
All Packages    This Package    Previous    Next

Class java.lang.RuntimeException

java.lang.Object
   |
   +----java.lang.Throwable
           |
           +----java.lang.Exception
                   |
                   +----java.lang.RuntimeException

public class RuntimeException
extends Exception
An exception that can reasonably occur during the execution of a Java program by the Virtual machine.

Version:
1.2, 08/07/95
Author:
Frank Yellin

Constructor Index

 o RuntimeException()
Constructs a RuntimeException with no detail message.
 o RuntimeException(String)
Constructs a RuntimeException with the specified detail message.

Constructors

 o RuntimeException
  public RuntimeException()
Constructs a RuntimeException with no detail message. A detail message is a String that describes this particular exception.

 o RuntimeException

  public RuntimeException(String s)
Constructs a RuntimeException with the specified detail message. A detail message is a String that describes this particular exception.
Parameters:
s - the detail message


All Packages    This Package    Previous    Next