What is the difference between a Running time exception and a normal exception
Anonimo
Runtime Exceptions are not to be handled within the program. The others which extend Exception class have to be caught using try catch block or declared in the signature of the method using the throws keyword.