public class CardException extends RuntimeException
{
  public CardException(String s)
  {
    super(s);
  }
}
