File tree Expand file tree Collapse file tree 1 file changed +32
-0
lines changed Expand file tree Collapse file tree 1 file changed +32
-0
lines changed Original file line number Diff line number Diff line change
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
+ }
You can’t perform that action at this time.
0 commit comments