File size: 430 Bytes
d46f4a3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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;
    }
}