All Downloads are FREE. Search and download functionalities are using the official Maven repository.

me.deecaad.core.file.SerializerOptionsException Maven / Gradle / Ivy

package me.deecaad.core.file;

import me.deecaad.core.MechanicsCore;
import org.jetbrains.annotations.NotNull;

public class SerializerOptionsException extends SerializerException {

    public SerializerOptionsException(@NotNull String name, String type, Iterable options,
        String actual, @NotNull String location) {

        super(name, getMessages(type, options, actual), location);
    }

    public SerializerOptionsException(@NotNull Serializer serializer, String type, Iterable options,
        String actual, @NotNull String location) {

        super(serializer, getMessages(type, options, actual), location);
    }

    private static String[] getMessages(String type, Iterable options, String actual) {
        return new String[]{
                "Could not match config to any " + type,
                forValue(actual),
                didYouMean(actual, options),
                possibleValues(options, actual, MechanicsCore.getPlugin() == null ? 10 : MechanicsCore.getPlugin().getConfig().getInt("Show_Serialize_Options", 32))
        };
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy