17 lines
322 B
Java
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();
|
|
}
|
|
|