what are the type of exception
How the exceptions are handled in java
Can we have try without catch block in java ?
What is RunTime exception in java?
Can we keep other statements in between try, catch and finally block?
Can we keep the statements after finally block If the control is returning from the finally block itself?
What is Re-throwing an exception in java?
Runtime exception in java
RuntimeException is the superclass of those exceptions that can be thrown during the normal operation of the Java Virtual Machine.
RuntimeException and its subclasses are unchecked exceptions. Unchecked exceptions do not need to be declared
in a method or constructor's throws clause if they can be thrown by the execution of the method or constructor and propagate outside
the method or constructor boundary.
core java