aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/eu/olli/cowlection/command/exception/MooCommandException.java
blob: 0cc55e0849e176209e135091a53135d20561a9a7 (plain)
1
2
3
4
5
6
7
8
9
package eu.olli.cowlection.command.exception;

import net.minecraft.command.CommandException;

public class MooCommandException extends CommandException {
    public MooCommandException(String msg) {
        super("cowlection.commands.generic.exception", msg);
    }
}