Skip to content

Commit dcbd252

Browse files
committed
Added NDLException
1 parent 6363aa7 commit dcbd252

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed

src/mhahnFr/NDL/NDLException.java

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
/*
2+
* NDL4Java - Native Dark mode Listener for Java.
3+
*
4+
* Copyright (C) 2024 mhahnFr
5+
*
6+
* This file is part of NDL4Java.
7+
*
8+
* NDL4Java is free software: you can redistribute it and/or modify
9+
* it under the terms of the GNU Lesser General Public License as published by
10+
* the Free Software Foundation, either version 3 of the License, or
11+
* (at your option) any later version.
12+
*
13+
* NDL4Java is distributed in the hope that it will be useful,
14+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
15+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16+
* GNU Lesser General Public License for more details.
17+
*
18+
* You should have received a copy of the GNU Lesser General Public License
19+
* along with NDL4Java. If not, see <https://www.gnu.org/licenses/>.
20+
*/
21+
22+
package mhahnFr.NDL;
23+
24+
public class NDLException extends RuntimeException {
25+
NDLException(final String message) {
26+
super(message);
27+
}
28+
29+
NDLException(final String message, final Throwable cause) {
30+
super(message, cause);
31+
}
32+
}

0 commit comments

Comments
 (0)