diff options
author | syeyoung <cyoung06@naver.com> | 2022-11-20 00:51:42 +0900 |
---|---|---|
committer | syeyoung <cyoung06@naver.com> | 2022-11-20 00:51:42 +0900 |
commit | bd077bc701eb937e577d76ebdf7575510a459bd5 (patch) | |
tree | dd0bef27c4634f6b0011990d16a1624f125bffac /loader/src/main/java/kr/syeyoung/dungeonsguide/launcher/exceptions | |
parent | 9c169734cd960705eb70c052e51f9fab2ab74ab6 (diff) | |
download | Skyblock-Dungeons-Guide-bd077bc701eb937e577d76ebdf7575510a459bd5.tar.gz Skyblock-Dungeons-Guide-bd077bc701eb937e577d76ebdf7575510a459bd5.tar.bz2 Skyblock-Dungeons-Guide-bd077bc701eb937e577d76ebdf7575510a459bd5.zip |
- More null checks on DungeonsGuide
- Unloading Exception now wraps Errors too
- Fix typos in loaders that caused weird resource
Signed-off-by: syeyoung <cyoung06@naver.com>
Diffstat (limited to 'loader/src/main/java/kr/syeyoung/dungeonsguide/launcher/exceptions')
-rw-r--r-- | loader/src/main/java/kr/syeyoung/dungeonsguide/launcher/exceptions/DungeonsGuideUnloadingException.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/loader/src/main/java/kr/syeyoung/dungeonsguide/launcher/exceptions/DungeonsGuideUnloadingException.java b/loader/src/main/java/kr/syeyoung/dungeonsguide/launcher/exceptions/DungeonsGuideUnloadingException.java index 6b2850f6..78beeaa7 100644 --- a/loader/src/main/java/kr/syeyoung/dungeonsguide/launcher/exceptions/DungeonsGuideUnloadingException.java +++ b/loader/src/main/java/kr/syeyoung/dungeonsguide/launcher/exceptions/DungeonsGuideUnloadingException.java @@ -20,5 +20,5 @@ package kr.syeyoung.dungeonsguide.launcher.exceptions; public class DungeonsGuideUnloadingException extends Exception { public DungeonsGuideUnloadingException(String message) {super(message);} - public DungeonsGuideUnloadingException(Exception cause) {super(cause);} + public DungeonsGuideUnloadingException(Throwable cause) {super(cause);} } |