Class Exception

Direct Known Subclasses:
ClassNotFoundException, CloneNotSupportedException, IllegalAccessException, InstantiationException, InterruptedException, IOException, ParseException, ParseException, RuntimeException, Transform.NotInvertibleException, URISyntaxException

public class Exception extends Throwable
The class Exception and its subclasses are a form of Throwable that indicates conditions that a reasonable application might want to catch. Since: JDK1.0, CLDC 1.0 See Also:Error
  • Constructor Details

    • Exception

      public Exception()
      Constructs an Exception with no specified detail message.
    • Exception

      public Exception(String s)
      Constructs an Exception with the specified detail message. s - the detail message.
    • Exception

      public Exception(Throwable cause)

      Constructs a new exception with the provided cause.

      Parameters
      • cause: The cause of the exception.
    • Exception

      public Exception(String s, Throwable cause)

      Constructs a new exception with message and cause.

      Parameters
      • s: The detail message.

      • cause: The cause of the exception