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 java.io.IOException;
25  
26  import jakarta.xml.bind.annotation.XmlElement;
27  import jakarta.xml.bind.annotation.XmlRootElement;
28  
29  import lombok.NoArgsConstructor;
30  
31  /**
32   * <p>CommandException class.</p>
33   *
34   * @author Michael Thomas (mikepthomas@outlook.com)
35   * @version 7.6.21
36   */
37  @NoArgsConstructor
38  @XmlRootElement(name = "CommandException")
39  public class CommandException extends IOException {
40  
41      /**
42       * Constructs an instance of <code>CommandException</code> with the
43       * specified detail message.
44       *
45       * @param message the detail message.
46       */
47      public CommandException(final String message) {
48          super(message);
49      }
50  
51      /**
52       * Constructs an instance of <code>CommandException</code> with the
53       * specified detail message and the cause of the Exception.
54       *
55       * @param message the detail message.
56       * @param cause the cause of the exception.
57       */
58      public CommandException(final String message, final Throwable cause) {
59          super(message, cause);
60      }
61  
62      /** {@inheritDoc} */
63      @Override
64      @XmlElement
65      public final String getMessage() {
66          return super.getMessage();
67      }
68  }