Created MismatchedVersionException.

This commit is contained in:
2022-01-16 13:08:17 +00:00
parent 53e4099a30
commit d2145b0095

View File

@ -0,0 +1,7 @@
package dev.micle.totemofreviving.util;
public class MismatchedVersionException extends RuntimeException {
public MismatchedVersionException(String msg) {
super(msg);
}
}