* @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));
}