#include "StackOverflow.h"

StackOverflow::StackOverflow()
{
}

StackOverflow::StackOverflow(const StackOverflow& orig)
{
}

StackOverflow::~StackOverflow()
{
}

const char* StackOverflow::what() const throw()
{
    return "push used on full matrix stack";
}