homeduke Prof. Dr. Uwe Schmidt FH Wedel

Die Datei: NoZeroFoundException.java


weiter
   1/**
   2  * exception for searchZero method
   3  * no 0 point found in an interval
   4  */
   5
   6public
   7class NoZeroFoundException
   8  extends Exception
   9{
  10  public
  11  NoZeroFoundException(String msg) {
  12    super(msg);
  13  }
  14
  15}

Die Quelle: NoZeroFoundException.java


Letzte Änderung: 29.04.2013
© Prof. Dr. Uwe Schmidt
Prof. Dr. Uwe Schmidt FH Wedel