Package games.pickupbot.errors

Examples of games.pickupbot.errors.PickupBotError


                if (game.getGameType().equalsIgnoreCase(gameType)) {
                    return game;
                }
            }

            throw new PickupBotError(String.format("Unknown game type %s",
                    IrcMessageTextModifier.makeBold(gameType)));
        }
    }
View Full Code Here


            Game game = this.getGameByType(gameType);

            if (game.isPlayerAdded(player)) {
                this.getExtensionMessenger().sendBroadcastMessage(this.getChannels(), game.getPromoteMessage());
            } else {
                throw new PickupBotError("You cannot promote while not added");
            }
        }
    }
View Full Code Here

TOP

Related Classes of games.pickupbot.errors.PickupBotError

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.