Exception
UnChecked Exception
Exception ArithmeticException ArrayIndexOutOfBoundsException IllegalArgumentException ClassCastException IndexOutOfBoundsException NullPointerException NumberFormatException Meaning Arithmetic error, such as divide-by-zero.
Array index is out-of-bounds.
Illegal argument used to invoke a method. Invalid cast. Some type of index is out-of-bounds. Invalid use of a null reference. Invalid conversion of a string to a numeric format.
Checked Exception
Exception
IllegalAccessException InterruptedException NoSuchFieldException NoSuchMethodException CloneNotSupportedException
Meaning
Access to a class is denied. One thread has been interrupted by another thread. A requested field does not exist. Requested method does not exist. Attempt to clone an object that does not implement the Cloneable interface.