#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";
}