Java傳遞參數拋出異常
如何傳遞參數時拋出檢查異常?
解決方法
這個例子顯示了如何將參數傳遞時拋出一個異常及如何使用這些參數時,使用異常Exception類的getMessage()方法捕獲。
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