package net.minecraft.gametest.framework; import net.minecraft.network.chat.Component; public abstract class GameTestException extends RuntimeException { public GameTestException(String mesage) { super(mesage); } public abstract Component getDescription(); }