This repository has been archived on 2023-11-26. You can view files and clone it, but cannot push or open issues or pull requests.
EnergonRelics/src/main/java/com/thebrokenrail/energonrelics/util/MissingCaseException.java
TheBrokenRail 5cc87d537c
All checks were successful
EnergonRelics/pipeline/head This commit looks good
Lasers Render Correctly
2020-07-16 14:50:18 -04:00

8 lines
194 B
Java

package com.thebrokenrail.energonrelics.util;
public class MissingCaseException extends RuntimeException {
public MissingCaseException(Enum<?> value) {
super(value.name());
}
}