001/*
002 * Copyright (c) 2016-2017 Daniel Ennis (Aikar) - MIT License
003 *
004 *  Permission is hereby granted, free of charge, to any person obtaining
005 *  a copy of this software and associated documentation files (the
006 *  "Software"), to deal in the Software without restriction, including
007 *  without limitation the rights to use, copy, modify, merge, publish,
008 *  distribute, sublicense, and/or sell copies of the Software, and to
009 *  permit persons to whom the Software is furnished to do so, subject to
010 *  the following conditions:
011 *
012 *  The above copyright notice and this permission notice shall be
013 *  included in all copies or substantial portions of the Software.
014 *
015 *  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
016 *  EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
017 *  MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
018 *  NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
019 *  LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
020 *  OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
021 *  WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
022 */
023
024package co.aikar.commands;
025
026import co.aikar.locales.MessageKey;
027import co.aikar.locales.MessageKeyProvider;
028
029public class InvalidCommandArgument extends RuntimeException {
030    final boolean showSyntax;
031    final MessageKey key;
032    final String[] replacements;
033
034    public InvalidCommandArgument() {
035        this(null, true);
036    }
037
038    public InvalidCommandArgument(boolean showSyntax) {
039        this(null, showSyntax);
040    }
041
042    public InvalidCommandArgument(MessageKeyProvider key, String... replacements) {
043        this(key.getMessageKey(), replacements);
044    }
045
046    public InvalidCommandArgument(MessageKey key, String... replacements) {
047        this(key, true, replacements);
048    }
049
050    public InvalidCommandArgument(MessageKeyProvider key, boolean showSyntax, String... replacements) {
051        this(key.getMessageKey(), showSyntax, replacements);
052    }
053
054    public InvalidCommandArgument(MessageKey key, boolean showSyntax, String... replacements) {
055        super(key.getKey(), null, false, false);
056        this.showSyntax = showSyntax;
057        this.key = key;
058        this.replacements = replacements;
059    }
060
061    public InvalidCommandArgument(String message) {
062        this(message, true);
063    }
064
065    public InvalidCommandArgument(String message, boolean showSyntax) {
066        super(message, null, false, false);
067        this.showSyntax = showSyntax;
068        this.replacements = null;
069        this.key = null;
070    }
071}