StackOverflow.h 295 B

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