Code/net/minecraft/gametest/framework/GameTestException.java

11 lines
287 B
Java
Raw Permalink Normal View History

2025-07-01 06:20:03 +00:00
package net.minecraft.gametest.framework;
import net.minecraft.network.chat.Component;
public abstract class GameTestException extends RuntimeException {
public GameTestException(String p_394946_) {
super(p_394946_);
}
public abstract Component getDescription();
}