01: /*
02: * JScience - Java(TM) Tools and Libraries for the Advancement of Sciences.
03: * Copyright (C) 2006 - JScience (http://jscience.org/)
04: * All rights reserved.
05: *
06: * Permission to use, copy, modify, and distribute this software is
07: * freely granted, provided that this notice is preserved.
08: */
09: package org.jscience.mathematics.function;
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, 2004
16: */
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: }
|