blob: 322ee82f1a3e796ca7319cdcc8a967069d46442c [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.commons.math;
import org.apache.commons.math.linear.ArrayRealVector;
/**
* Exception thrown when an error occurs evaluating a function.
* <p>
* Maintains an <code>argument</code> property holding the input value that
* caused the function evaluation to fail.
*
* @version $Revision$ $Date$
*/
public class FunctionEvaluationException extends MathException {
/** Serializable version identifier. */
private static final long serialVersionUID = -4305020489115478365L;
/** Argument causing function evaluation failure */
private double[] argument;
/**
* Construct an exception indicating the argument value
* that caused the function evaluation to fail.
*
* @param argument the failing function argument
*/
public FunctionEvaluationException(double argument) {
super("evaluation failed for argument = {0}", argument);
this.argument = new double[] { argument };
}
/**
* Construct an exception indicating the argument value
* that caused the function evaluation to fail.
*
* @param argument the failing function argument
* @since 2.0
*/
public FunctionEvaluationException(double[] argument) {
super("evaluation failed for argument = {0}", new ArrayRealVector(argument));
this.argument = argument.clone();
}
/**
* Constructs an exception with specified formatted detail message.
* Message formatting is delegated to {@link java.text.MessageFormat}.
* @param argument the failing function argument
* @param pattern format specifier
* @param arguments format arguments
* @since 1.2
*/
public FunctionEvaluationException(double argument,
String pattern, Object ... arguments) {
super(pattern, arguments);
this.argument = new double[] { argument };
}
/**
* Constructs an exception with specified formatted detail message.
* Message formatting is delegated to {@link java.text.MessageFormat}.
* @param argument the failing function argument
* @param pattern format specifier
* @param arguments format arguments
* @since 2.0
*/
public FunctionEvaluationException(double[] argument,
String pattern, Object ... arguments) {
super(pattern, arguments);
this.argument = argument.clone();
}
/**
* Constructs an exception with specified root cause.
* Message formatting is delegated to {@link java.text.MessageFormat}.
* @param cause the exception or error that caused this exception to be thrown
* @param argument the failing function argument
* @since 1.2
*/
public FunctionEvaluationException(Throwable cause, double argument) {
super(cause);
this.argument = new double[] { argument };
}
/**
* Constructs an exception with specified root cause.
* Message formatting is delegated to {@link java.text.MessageFormat}.
* @param cause the exception or error that caused this exception to be thrown
* @param argument the failing function argument
* @since 2.0
*/
public FunctionEvaluationException(Throwable cause, double[] argument) {
super(cause);
this.argument = argument.clone();
}
/**
* Constructs an exception with specified formatted detail message and root cause.
* Message formatting is delegated to {@link java.text.MessageFormat}.
* @param cause the exception or error that caused this exception to be thrown
* @param argument the failing function argument
* @param pattern format specifier
* @param arguments format arguments
* @since 1.2
*/
public FunctionEvaluationException(Throwable cause,
double argument, String pattern,
Object ... arguments) {
super(cause, pattern, arguments);
this.argument = new double[] { argument };
}
/**
* Constructs an exception with specified formatted detail message and root cause.
* Message formatting is delegated to {@link java.text.MessageFormat}.
* @param cause the exception or error that caused this exception to be thrown
* @param argument the failing function argument
* @param pattern format specifier
* @param arguments format arguments
* @since 2.0
*/
public FunctionEvaluationException(Throwable cause,
double[] argument, String pattern,
Object ... arguments) {
super(cause, pattern, arguments);
this.argument = argument.clone();
}
/**
* Returns the function argument that caused this exception.
*
* @return argument that caused function evaluation to fail
*/
public double[] getArgument() {
return argument.clone();
}
}