Java™ und Objektorientierung
Java/OO kleiner Drucker Druckversion

Schlüsselwort : throw

Gehe zu : this   Gehe zu : throws

Beschreibung throw

Eine Ausname (Exception) wird auf den Exception-Stack geworfen. Die aufrufende Methode fängt diese Exception ab (catch) oder schickt sie weiter an ihre eigene aufrufende Methode (throws).

Beispiel

  public class Kreis {
    private float radius;

    public Kreis(float r) throws ArithmeticException {
      if (r < 0.0) {
        throw new ArithmeticException("Radius negativ!");
      }
      this.radius = r;
    }
  }

© (2006-2017) Philipp Gressly Freimann