what difference between throw and throws in exception
handling.
Answer Posted / aravinda reddy
Whenever we want to force an exception then we use throw
keyword,throw keyword can also be used to pass a custom
message to the exception handling module i.e. the message
which we want to be printed. throw we will use at statement
level.
Whereas when we know that a particular exception may be
thrown or to pass a possible exception then we use throws
keyword. Point to note here is that the Java compiler very
well knows about the exceptions thrown by some methods so
it insists us to handle them. Method Level
Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
What are static methods?
What are the advantages of inner classes?
Why main method is called first in java?
Can you call a method on a null object?
What are the loops in java?
What is main in java?
What does nullpointerexception mean?
What is difference between Heap and Stack Memory?
Write a java program to check if a number is prime or not?
What are different types of inner classes ?
can I implement my own start() method? : Java thread
What is java jit compilers?
Can you pass by reference in java?
Is there a case when finally will not execute?
What is the difference between scrollbar and scrollpane?