我想试试这样会不会重写exception,结果运行不了。
为什么运行不了? package exceptionClass; public class exceptionClass { public int getC(int a,int b){ int c=a/b; return c; } public void nothing() throws Exception{ throw new Exception("对,我就是没事找事。"); } public static void main(String[] args){ try { int a=10/0; } catch (Exception e) { } } }