StackOverflow.cpp 272 B

12345678910111213141516171819
  1. #include "client/math/StackOverflow.h"
  2. StackOverflow::StackOverflow()
  3. {
  4. }
  5. StackOverflow::StackOverflow(const StackOverflow& orig)
  6. {
  7. }
  8. StackOverflow::~StackOverflow()
  9. {
  10. }
  11. const char* StackOverflow::what() const throw()
  12. {
  13. return "push used on full matrix stack";
  14. }