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