StackUnderflow.h 302 B

12345678910111213141516171819
  1. #ifndef STACKUNDERFLOW_H
  2. #define STACKUNDERFLOW_H
  3. #include <exception>
  4. class StackUnderflow : public std::exception
  5. {
  6. public:
  7. StackUnderflow();
  8. StackUnderflow(const StackUnderflow& orig);
  9. virtual ~StackUnderflow();
  10. virtual const char* what() const throw();
  11. private:
  12. };
  13. #endif