12345678910111213141516171819 |
- #include "StackUnderflow.h"
- StackUnderflow::StackUnderflow()
- {
- }
- StackUnderflow::StackUnderflow(const StackUnderflow& orig)
- {
- }
- StackUnderflow::~StackUnderflow()
- {
- }
- const char* StackUnderflow::what() const throw()
- {
- return "pop used on matrix stack of index 0";
- }
|