<<< The Throwable hierarchy     Index     Java exception propagation >>>

15. Common checked and unchecked exceptions

  • Checked exceptions

    
    ClassNotFoundException
    
    IOException
    
        EOFException
    
        FileNotFoundException
    
    NoSuchMethodException
    
    
  • Unchecked exceptions

    
    ArithmeticException
    
    IllegalArgumentException
    
        NumberFormatException
    
    IndexOutOfBoundsException
    
        ArrayIndexOutOfBoundsException
    
        StringIndexOutOfBoundsException
    
    NullPointerException
    
    InputMismatchException
    
    

<<< The Throwable hierarchy     Index     Java exception propagation >>>