View Javadoc
1   /*
2    * Copyright (C) 2016 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.polynomials.estimators;
17  
18  import com.irurueta.numerical.polynomials.PolynomialsException;
19  
20  /**
21   * Exception raised if polynomial estimation fails.
22   */
23  public class PolynomialEstimationException extends PolynomialsException {
24  
25      /**
26       * Constructor.
27       */
28      public PolynomialEstimationException() {
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 PolynomialEstimationException(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 PolynomialEstimationException(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 PolynomialEstimationException(final Throwable cause) {
57          super(cause);
58      }
59  }