View Javadoc
1   /*
2    * #%L
3    * This file is part of jFold.
4    * %%
5    * Copyright (C) 2012 - 2024 Mike Thomas <mikepthomas@outlook.com>
6    * %%
7    * jFold is free software: you can redistribute it and/or modify
8    * it under the terms of the GNU General Public License as published by
9    * the Free Software Foundation, either version 3 of the License, or
10   * (at your option) any later version.
11   * %
12   * jFold is distributed in the hope that it will be useful,
13   * but WITHOUT ANY WARRANTY; without even the implied warranty of
14   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15   * GNU General Public License for more details.
16   * %
17   * You should have received a copy of the GNU General Public License
18   * along with jFold.  If not, see <http://www.gnu.org/licenses/>.
19   * #L%
20   */
21  
22  package info.mikethomas.jfold.exceptions;
23  
24  import jakarta.xml.bind.annotation.XmlRootElement;
25  
26  import lombok.NoArgsConstructor;
27  
28  /**
29   * <p>SimulationInfoException class.</p>
30   *
31   * @author Michael Thomas (mikepthomas@outlook.com)
32   * @version 7.6.21
33   */
34  @NoArgsConstructor
35  @XmlRootElement(name = "SimulationInfoException")
36  public class SimulationInfoException extends CommandException {
37  
38      /**
39       * Constructs an instance of <code>SimulationInfoException</code> with the
40       * specified detail message.
41       *
42       * @param message the detail message.
43       */
44      public SimulationInfoException(final String message) {
45          super(message);
46      }
47  
48      /**
49       * Constructs an instance of <code>SimulationInfoException</code> with the
50       * specified detail message and the cause of the Exception.
51       *
52       * @param message the detail message.
53       * @param cause the cause of the exception.
54       */
55      public SimulationInfoException(final String message, final Throwable cause) {
56          super(message, cause);
57      }
58  }