Which among the following is not a method of Throwable class?

Which among the following is not a method of Throwable class? Correct Answer public Char toString()

Actually all the functions are available in throwable class. But the return type given in the option is wrong. The function toString returns string value. Hence the return type must be a String and not a char.

Related Questions