#ifndef HAND_EMPTY_H #define HAND_EMPTY_H #include class hand_empty : public std::domain_error { public: explicit hand_empty(const std::string& what) : std::domain_error(what) {} virtual ~hand_empty() throw() {} }; #endif