View Javadoc
1   /*
2    * Copyright (C) 2023 Alberto Irurueta Carro (alberto@irurueta.com)
3    *
4    * Licensed under the Apache License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    *
8    *         http://www.apache.org/licenses/LICENSE-2.0
9    *
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   * See the License for the specific language governing permissions and
14   * limitations under the License.
15   */
16  package com.irurueta.numerical.interpolation;
17  
18  import com.irurueta.numerical.NumericalException;
19  
20  /**
21   * Exception raised when function interpolation fails.
22   */
23  public class InterpolationException extends NumericalException  {
24  
25     /**
26      * Constructor.
27      */
28     public InterpolationException() {
29        super();
30     }
31  
32     /**
33      * Constructor with String containing message.
34      *
35      * @param message Message indicating the cause of the exception
36      */
37     public InterpolationException(final String message) {
38        super(message);
39     }
40  
41     /**
42      * Constructor with message and cause.
43      *
44      * @param message Message describing the cause of the exception.
45      * @param cause   Instance containing the cause of the exception.
46      */
47     public InterpolationException(final String message, final Throwable cause) {
48        super(message, cause);
49     }
50  
51     /**
52      * Constructor with cause.
53      *
54      * @param cause Instance containing the cause of the exception.
55      */
56     public InterpolationException(final Throwable cause) {
57        super(cause);
58     }
59  }