Code:
public class Einlesen {
public static int einlesen() throws Exception {
int wert1 = 1;
if (wert1 < -5 || wert1 > 55) {
throw new Exception("Wert1 kleiner als 1 oder Wert2 größer als 12");
}
return wert1;
}
}
Code:
public class Test1 {
public static void main(String[] args) {
int monat1;
try {
monat1 = Einlesen.einlesen();
System.out.println("Ausgabe 1");
} catch (Exception h) {
System.out.println(h.getMessage());
}
}
}
Hi, ich habe hier ein kleines "Testprogramm" zu Exceptions geschrieben, leider funktioniert es nicht!
Wo liegt der Fehler?
Gibt es irgendwo noch eine Dokumenteation zu Exceptions die ich mir online durchlesen könnte um etweige Fragen noch selbst klären zu können?
Danke für eure Hilfe!