Created MismatchedVersionException.

This commit is contained in:
2022-01-16 13:08:17 +00:00
parent 1ca4de1f4a
commit 78636c242d

View File

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