public class EmptyDeckException extends Exception {
	public EmptyDeckException() {
		super( "out of cards" );
	}	
}
