aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/zajc/gogarchiver/exception/NotLoggedInException.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/zajc/gogarchiver/exception/NotLoggedInException.java')
-rw-r--r--src/main/java/zajc/gogarchiver/exception/NotLoggedInException.java25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/main/java/zajc/gogarchiver/exception/NotLoggedInException.java b/src/main/java/zajc/gogarchiver/exception/NotLoggedInException.java
new file mode 100644
index 0000000..15d1a86
--- /dev/null
+++ b/src/main/java/zajc/gogarchiver/exception/NotLoggedInException.java
@@ -0,0 +1,25 @@
1//SPDX-License-Identifier: GPL-3.0
2/*
3 * gogarchiver-ng, an archival tool for GOG.com
4 * Copyright (C) 2024 Marko Zajc
5 *
6 * This program is free software: you can redistribute it and/or modify it under the
7 * terms of the GNU General Public License as published by the Free Software
8 * Foundation, version 3.
9 *
10 * This program is distributed in the hope that it will be useful, but WITHOUT ANY
11 * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
12 * PARTICULAR PURPOSE. See the GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License along with this
15 * program. If not, see <https://www.gnu.org/licenses/>.
16 */
17package zajc.gogarchiver.exception;
18
19public class NotLoggedInException extends Exception {
20
21 public NotLoggedInException() {
22 super();
23 }
24
25}