removed exception that turnd out not needed

This commit is contained in:
Maxmtg
2011-09-05 09:37:45 +00:00
parent 0842c5aa4f
commit 2f62f07126

View File

@@ -170,14 +170,4 @@ public final class CardDb {
public List<CardPrinted> getAllCards() { return allCardsFlat; }
public class NoSetsException extends RuntimeException
{
private static final long serialVersionUID = -8962691656197179214L;
public final String cardName;
public NoSetsException(String cardName) { this.cardName = cardName; }
@Override public String toString() {
return String.format("%s: The card '%s' was not assigned any set, it won't be loaded into game", this.getClass().getName(), cardName);
}
}
}