Package ch.bfh.jass.exceptions

Examples of ch.bfh.jass.exceptions.NotYourCardException


     * @return the specified card
     * @throws NotYourCardException
     */
    public Card getCard(Card card) throws NotYourCardException {
        if (!this.cards.contains(card)) {
            throw new NotYourCardException("Not your card buddy!");
        }
        return this.cards.get(this.cards.indexOf(card));
    }
View Full Code Here

TOP

Related Classes of ch.bfh.jass.exceptions.NotYourCardException

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.