StackUnderflow.cpp 286 B

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