如下是常見的 Error 和 Exception:
1)運行時異常(RuntimeException)也稱 【非檢查型異常 UncheckedException】:
- Nullpointer Exception:空指針異常;
- ClassCastException:類型強制轉換異常
- IllegalArgumentException:傳遞非法參數異常
- IndexOutOfBoundsException:下標越界異常
- NumberFormatException:數字格式異常
- ArrayIndexOutOfBoundsException: 數組越界異常
- ArrayStoreException: 數據存儲異常,操作數組時類型不一致
- ArithmeticException: (算術異常)
- BufferOverflowException: (緩沖區溢出異常)
2)非運行時異常(CheckedException)也稱 【檢查型異常】:
- ClassNotFoundException:找不到指定 class 的異常
- IOException:IO 操作異常
- FileNotFoundException:文件不存在異常
- SQLException:SQL語句異常
- InterruptedException: (中斷異常-調用線程睡眠時候)
3)錯誤(Error):
- NoClassDefFoundError:找不到 class 定義異常
- StackOverflowError:深遞歸導致棧被耗盡而拋出的異常
- OutOfMemoryError:內存溢出異常