在Java编程中,如何处理已检查异常?
此示例显示如何使用catch
块处理已检查的异常。
package com.yiibai;
public class HandleCheckedException {
public static void main(String args[]) {
try {
throw new Exception("throwing an exception");
} catch (Exception e) {
System.out.println(e.getMessage());
}
}
}
上述代码示例将产生以下结果 -
throwing an exception