Exception means an unwanted condition occur during the excecution of a program.Exception are of two type
1) Checked Exception
2) Unchecked Exception
Checked exception are those exception which can be checked at compile time such as NumberFormatException
Unchecked Exception are those which can not be checked at compile time such as file not found exception arrayoutofBound exception all runtime exception are Unchecked exception