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