2025-11-24 22:52:51 +03:00

17 lines
322 B
Java

/*
* Decompiled with CFR 0.152.
*/
package net.minecraft.gametest.framework;
import net.minecraft.network.chat.Component;
public abstract class GameTestException
extends RuntimeException {
public GameTestException(String message) {
super(message);
}
public abstract Component getDescription();
}