ThreadDeath in Java

java.lang.ThreadDeath

An instance of ThreadDeath is thrown in the victim thread when the (deprecated) Thread.stop() method is invoked.

An application should catch instances of this class only if it must clean up after being terminated asynchronously. If ThreadDeath is caught by a method, it is important that it be re-thrown so that the thread actually dies.

The top-level error handler does not print out a message if ThreadDeath is never caught.

The class ThreadDeath is specifically a subclass of Error rather than Exception, even though it is a"normal occurrence", because many applications catch all occurrences of Exception and then discard the exception.

Declaration

public class ThreadDeath extends Error {
    @java.io.Serial
    private static final long serialVersionUID =
-4417128565033088268L;

    public ThreadDeath() {
    }
}


Methods

1. ThreadDeath()

java.lang.ThreadDeath.ThreadDeath()

This method constructs a ThreadDeath.

Parameters: NA

Exceptions: NA

Approach

Java

package com.ThreadDeath;

public class ThreadDeath1 {
    public static void main(String[] args) {

        ThreadDeath threadDeath = new ThreadDeath();

        System.out.println(threadDeath);
    }
}

Output:

java.lang.ThreadDeath

No comments:

Post a Comment