blob: 28251ede741a08b3ee16c1bf4760c63e6e4f66e7 [file] [log] [blame]
Raymonddee08492015-04-02 10:43:13 -07001/*
2 * Licensed to the Apache Software Foundation (ASF) under one or more
3 * contributor license agreements. See the NOTICE file distributed with
4 * this work for additional information regarding copyright ownership.
5 * The ASF licenses this file to You under the Apache License, Version 2.0
6 * (the "License"); you may not use this file except in compliance with
7 * the License. You may obtain a copy of the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 */
17
18package org.apache.commons.math.ode;
19
20import org.apache.commons.math.MathException;
21import org.apache.commons.math.exception.util.DummyLocalizable;
22import org.apache.commons.math.exception.util.Localizable;
23
24/**
25 * This exception is made available to users to report
26 * the error conditions that are triggered while computing
27 * the differential equations.
28 * @version $Revision: 1072413 $ $Date: 2011-02-19 19:59:39 +0100 (sam. 19 févr. 2011) $
29 * @since 1.2
30 */
31public class DerivativeException extends MathException {
32
33 /** Serializable version identifier */
34 private static final long serialVersionUID = 5666710788967425123L;
35
36 /** Simple constructor.
37 * Build an exception by translating and formating a message
38 * @param specifier format specifier (to be translated)
39 * @param parts to insert in the format (no translation)
40 */
41 public DerivativeException(final String specifier, final Object ... parts) {
42 this(new DummyLocalizable(specifier), parts);
43 }
44
45 /** Simple constructor.
46 * Build an exception by translating and formating a message
47 * @param specifier format specifier (to be translated)
48 * @param parts to insert in the format (no translation)
49 * @since 2.2
50 */
51 public DerivativeException(final Localizable specifier, final Object ... parts) {
52 super(specifier, parts);
53 }
54
55 /** Build an instance from an underlying cause.
56 * @param cause cause for the exception
57 */
58 public DerivativeException(final Throwable cause) {
59 super(cause);
60 }
61
62}