public class test10 {
public static void main(String[] args) throws Exception {
int num = x;
try {
if (num == 0) {
throw new MyException();
}
}
catch (MyException s){
System.out.println("Exception: " + s.toString());
return;
}
if (num<10){
System.out.println("Меньше 10");
}
else {
System.out.println("Больше");
}
}
static class MyException extends Exception{
public String toString() {
return "Недопустимое значение - ноль.";
}
}
}