#ifndef STACKUNDERFLOW_H
#define STACKUNDERFLOW_H

#include <exception>

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

};

#endif