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