ThreadDeathNameThreadDeathSynopsis
DescriptionA ThreadDeath object is thown by the stop() method of a Thread object to kill the thread. Catching ThreadDeath objects is not recommended. If it is necessary to catch a ThreadDeath object, it is important to rethrow the object so that it is possible to cleanly stop the catching thread. Class Summary
public class java.lang.ThreadDeath extends java.lang.Error { // Constructors public ThreadDeath(); } ConstructorsThreadDeathpublic ThreadDeath()
Inherited Methods
See AlsoError, Thread, Throwable |
|