Contents | Package | Class | Tree | Deprecated | Index | Help | Java 1.2 Beta 3 | ||
PREV | NEXT | SHOW LISTS | HIDE LISTS |
java.lang.Object | +----java.lang.Throwable | +----java.lang.Exception
Exception
and its subclasses are a form of
Throwable
that indicates conditions that a reasonable
application might want to catch.
Constructor Summary | |
Exception()
Exception with no specified detail message.
|
|
Exception(String s)
Exception with the specified detail message.
|
Methods inherited from class java.lang.Throwable |
fillInStackTrace, getLocalizedMessage, getMessage, printStackTrace, printStackTrace, printStackTrace, toString |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
public Exception()
Exception
with no specified detail message.public Exception(String s)
Exception
with the specified detail message.
s
- the detail message.
Contents | Package | Class | Tree | Deprecated | Index | Help | Java 1.2 Beta 3 | ||
PREV | NEXT | SHOW LISTS | HIDE LISTS |