StepsizeTooSmallException


package odeadapt;

/**
 * Exception that is thrown if the step size gets too small
 */
public class StepsizeTooSmallException extends Exception {

  /**
   * construct exception with given comment
   */
  public StepsizeTooSmallException(String s) {
    super(s);
  }

  /**
   * construct exception without special comment
   */
  public StepsizeTooSmallException() {
    super();
  }
}

previous    contents     next

Peter Junglas 20.12.1999