1 /*2 * JScience - Java(TM) Tools and Libraries for the Advancement of Sciences.3 * Copyright (C) 2006 - JScience (http://jscience.org/)4 * All rights reserved.5 * 6 * Permission to use, copy, modify, and distribute this software is7 * freely granted, provided that this notice is preserved.8 */9 package org.jscience.mathematics.functions;10 11 /**12 * <p> Thrown when a function operation cannot be performed.</p>13 *14 * @author <a HREF="mailto:jean-marie@dautelle.com">Jean-Marie Dautelle</a>15 * @version 1.0, January 24, 200416 */17 public class FunctionException extends RuntimeException {18 19 /**20 * Constructs a {@link FunctionException} with no detail message.21 */22 public FunctionException() {23 super();24 }25 26 /**27 * Constructs a {@link FunctionException} with the specified message.28 *29 * @param message the message.30 */31 public FunctionException(String message) {32 super(message);33 }34 35 private static final long serialVersionUID = 1L;36 }