Update year in copyright lines
[Sone.git] / src / main / java / net / pterodactylus / sone / freenet / fcp / FcpException.java
1 /*
2  * Sone - FcpException.java - Copyright © 2011–2019 David Roden
3  *
4  * This program is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
16  */
17
18 package net.pterodactylus.sone.freenet.fcp;
19
20 /**
21  * Base exception for FCP communication.
22  */
23 public class FcpException extends Exception {
24
25         /**
26          * Creates a new FCP exception.
27          */
28         public FcpException() {
29                 super();
30         }
31
32         /**
33          * Creates a new FCP exception.
34          *
35          * @param message
36          *            The message of the exception
37          */
38         public FcpException(String message) {
39                 super(message);
40         }
41
42         /**
43          * Creates a new FCP exception.
44          *
45          * @param cause
46          *            The cause of the exception
47          */
48         public FcpException(Throwable cause) {
49                 super(cause);
50         }
51
52         /**
53          * Creates a new FCP exception.
54          *
55          * @param message
56          *            The message of the exception
57          * @param cause
58          *            The cause of the exception
59          */
60         public FcpException(String message, Throwable cause) {
61                 super(message, cause);
62         }
63
64 }