Hallo
Ich habe da einen Fehler, bei dem ich nicht weiss, wie ich diesen lösen kann.
Es handelt sich um:
No exception of type ArithmeticException can be thrown; an exception type must be a subclass of Throwable
Ich habe da einen Fehler, bei dem ich nicht weiss, wie ich diesen lösen kann.
Es handelt sich um:
No exception of type ArithmeticException can be thrown; an exception type must be a subclass of Throwable
Java:
public class ArithmeticException {
public static void main(String[] args) {
new ArithmeticException();
divide(2);
}
public static int divide(int a){
int solution;
try
{
solution = a/0;
}
catch (ArithmeticException e)
{
System.out.println("Division by null in not allowed");
}
return solution;
}
}