1 18 package org.apache.commons.math.function; 19 20 import org.apache.commons.math.MathException; 21 22 28 public class EvaluationException extends MathException { 29 30 33 public EvaluationException() { 34 super(); 35 } 37 38 41 public EvaluationException(String message) { 42 super(message); 43 } 45 46 50 public EvaluationException(String message, Throwable cause) { 51 super(message, cause); 52 } 54 55 58 public EvaluationException(Throwable cause) { 59 super(cause); 60 } 62 63 } 64 | Popular Tags |