22 lines
490 B
Java
22 lines
490 B
Java
/*
|
|
* Decompiled with CFR 0.152.
|
|
*/
|
|
package net.minecraft.commands;
|
|
|
|
import net.minecraft.network.chat.Component;
|
|
|
|
public class FunctionInstantiationException
|
|
extends Exception {
|
|
private final Component messageComponent;
|
|
|
|
public FunctionInstantiationException(Component messageComponent) {
|
|
super(messageComponent.getString());
|
|
this.messageComponent = messageComponent;
|
|
}
|
|
|
|
public Component messageComponent() {
|
|
return this.messageComponent;
|
|
}
|
|
}
|
|
|