f372b9ccb5
Completed a basic version of configurable dungeon chains. Almost all of the final funcionality is present. However, the configuration is hardcoded at the moment, not read from a file. This was done for testing purposes. I'll add reading from config files soon. Dungeon packs are partially implemented. Built-in and custom dungeons are currently thrown into the default pack, Ruins. The next step is to generalize the dungeon registration code in DungeonHelper so that we can detect dungeon packs, read their config files, and register dungeons with their corresponding pack. dd-export will need to support packs as well. dd-rift will have issues dealing with duplicate dungeon names across packs, but this isn't a major concern and can be dealt with in the long term.
21 lines
432 B
Java
21 lines
432 B
Java
package StevenDimDoors.mod_pocketDim.util;
|
|
|
|
public class ConfigurationProcessingException extends Exception
|
|
{
|
|
private static final long serialVersionUID = -4525298050874891911L;
|
|
|
|
public ConfigurationProcessingException()
|
|
{
|
|
super();
|
|
}
|
|
|
|
public ConfigurationProcessingException(String message)
|
|
{
|
|
super(message);
|
|
}
|
|
|
|
public ConfigurationProcessingException(String message, Throwable cause)
|
|
{
|
|
super(message, cause);
|
|
}
|
|
}
|