请教 ArithmeticException 的使用
class Excep {
public int division( int a, int b ) {
return a / b;
}
}
class ExcepTest {
public static void main( String[] args ) {
Excep except = new Excep();
try {
except.division( 5, 0 );
System.out.println( "exception" );
}
catch( ArithmeticException e ) { //提示"不不兼容的类型",请问怎么改才能使用这个ArithmeticException类 System.out.println( e.toString() );
}
}