View Javadoc
1   /*
2    * Copyright (C) 2015 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.fitting;
17  
18  import com.irurueta.numerical.NumericalException;
19  
20  /**
21   * Raised when a fitter fails to fit a function to provided data.
22   */
23  public class FittingException extends NumericalException {
24  
25      /**
26       * Constructor
27       */
28      public FittingException() {
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 FittingException(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 FittingException(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 FittingException(final Throwable cause) {
57          super(cause);
58      }
59  }