Code/net/minecraft/commands/FunctionInstantiationExcept...

16 lines
430 B
Java
Raw Permalink Normal View History

2025-07-01 06:20:03 +00:00
package net.minecraft.commands;
import net.minecraft.network.chat.Component;
public class FunctionInstantiationException extends Exception {
private final Component messageComponent;
public FunctionInstantiationException(Component p_297947_) {
super(p_297947_.getString());
this.messageComponent = p_297947_;
}
public Component messageComponent() {
return this.messageComponent;
}
}