0
What is the difference between throw and throws?
throw and throws are the keyword
4 Answers
+ 6
Please visit following link
http://www.javatpoint.com/difference-between-throw-and-throws-in-java
+ 1
you use throw when you want to throw an execption as statement, you use throws when you mark a method that may throw an execption for warning user to handle that exception witg try and catch
0
Thx. The answers helped me too!