#include <iostream>
using namespace std;

#ifndef STACK_EXCEPTION_INCLUDED
#define STACK_EXCEPTION_INCLUDED

class StackException
{
};

class StackNoElementException
{
};

#endif