1 /*
2 * Copyright (c) Patrick Magauran 2018.
3 * Licensed under the AGPLv3. All conditions of said license apply.
4 * This file is part of ABOS.
5 *
6 * ABOS is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU Affero General Public License as published by
8 * the Free Software Foundation, either version 3 of the License, or
9 * (at your option) any later version.
10 *
11 * ABOS is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU Affero General Public License for more details.
15 *
16 * You should have received a copy of the GNU Affero General Public License
17 * along with ABOS. If not, see <http://www.gnu.org/licenses/>.
18 */
19
20 package Exceptions;/*
21 * Copyright (c) Patrick Magauran 2018.
22 * Licensed under the AGPLv3. All conditions of said license apply.
23 * This file is part of ABOS.
24 *
25 * ABOS is free software: you can redistribute it and/or modify
26 * it under the terms of the GNU Affero General Public License as published by
27 * the Free Software Foundation, either version 3 of the License, or
28 * (at your option) any later version.
29 *
30 * ABOS is distributed in the hope that it will be useful,
31 * but WITHOUT ANY WARRANTY; without even the implied warranty of
32 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
33 * GNU Affero General Public License for more details.
34 *
35 * You should have received a copy of the GNU Affero General Public License
36 * along with ABOS. If not, see <http://www.gnu.org/licenses/>.
37 */
38
39 public class addressException extends RuntimeException {
40 public addressException() { super(); }
41
42 // --Commented out by Inspection (3/18/17 4:41 PM):public Exceptions.addressException(String message) { super(message); }
43
44 // --Commented out by Inspection (3/18/17 4:41 PM):public Exceptions.addressException(String message, Throwable cause) { super(message, cause); }
45
46 // --Commented out by Inspection (3/18/17 4:41 PM):public Exceptions.addressException(Throwable cause) { super(cause); }
47 }