Java處理已檢查異常
如何處理已檢查異常?
解決方法
此示例演示如何使用catch塊來處理已檢查的異常。
public class Main { public static void main (String args[]) { try{ throw new Exception("throwing an exception"); } catch (Exception e) { System.out.println(e.getMessage()); } } }
結果
上麵的代碼示例將產生以下結果。
throwing an exception