#ifndef STACKOVERFLOW_H
#define STACKOVERFLOW_H

#include <exception>

class StackOverflow : public std::exception
{
public:
    StackOverflow();
    StackOverflow(const StackOverflow& orig);
    virtual ~StackOverflow();
    
    virtual const char* what() const throw();
private:

};

#endif