diff options
| author | Unknown <shekwancheung0528@gmail.com> | 2019-08-08 16:53:46 +0800 |
|---|---|---|
| committer | Unknown <shekwancheung0528@gmail.com> | 2019-08-08 16:53:46 +0800 |
| commit | 10fa4cea1da644efe5b3045d3159a3eebdb8c0a8 (patch) | |
| tree | 0e8f504b66391d6762d526c0e7cdd94c3cb6022f /src/main/java/me/shedaniel/rei/api/ConfigManager.java | |
| parent | 6464acb0a7fe98ab30f9419e6aa95bdd1e92bc74 (diff) | |
| download | RoughlyEnoughItems-10fa4cea1da644efe5b3045d3159a3eebdb8c0a8.tar.gz RoughlyEnoughItems-10fa4cea1da644efe5b3045d3159a3eebdb8c0a8.tar.bz2 RoughlyEnoughItems-10fa4cea1da644efe5b3045d3159a3eebdb8c0a8.zip | |
Using fiber as a config lib
Diffstat (limited to 'src/main/java/me/shedaniel/rei/api/ConfigManager.java')
| -rw-r--r-- | src/main/java/me/shedaniel/rei/api/ConfigManager.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main/java/me/shedaniel/rei/api/ConfigManager.java b/src/main/java/me/shedaniel/rei/api/ConfigManager.java index 5f915dfff..e64d5df55 100644 --- a/src/main/java/me/shedaniel/rei/api/ConfigManager.java +++ b/src/main/java/me/shedaniel/rei/api/ConfigManager.java @@ -5,7 +5,7 @@ package me.shedaniel.rei.api; -import me.shedaniel.rei.client.ConfigObject; +import me.zeroeightsix.fiber.exception.FiberException; import net.minecraft.client.gui.screen.Screen; import java.io.IOException; @@ -17,14 +17,14 @@ public interface ConfigManager { * * @throws IOException when error */ - void saveConfig() throws IOException; + void saveConfig() throws IOException, FiberException; /** * Loads the config from the json file, creates the file if not found. * * @throws IOException when error */ - void loadConfig() throws IOException; + void loadConfig() throws IOException, FiberException; /** * Gets the config instance |
