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.
Gestus/src/main/java/com/thebrokenrail/gestus/emote/exception/EmoteLoadingException.java

10 lines
301 B
Java

package com.thebrokenrail.gestus.emote.exception;
import net.minecraft.util.Identifier;
public class EmoteLoadingException extends RuntimeException {
public EmoteLoadingException(Identifier id, Exception cause) {
super(String.format("Unable To Load: %s", id.toString()), cause);
}
}