Class ThreadDeath

java.lang.Object
java.lang.Throwable
java.lang.Error
java.lang.ThreadDeath
All Implemented Interfaces:
Serializable

@Deprecated(since="20",forRemoval=true)public classThreadDeathextendsError
Deprecated, for removal: This API element is subject to removal in a future version.
Thread.stop() was originally specified to "stop" a victim thread by causing the victim thread to throw aThreadDeath. It was inherently unsafe and deprecated in an early JDK release. The ability to "stop" a thread withThread.stop has been removed and theThread.stop method changed to throw an exception. Consequently,ThreadDeath is also deprecated, for removal.
An instance ofThreadDeath was originally specified to be thrown by a victim thread when "stopped" withThread.stop().
Since:
1.0
See Also:
  • Constructor Details

    • ThreadDeath

      public ThreadDeath()
      Deprecated, for removal: This API element is subject to removal in a future version.
      Constructs aThreadDeath.