#ifndef _NEW
#define _NEW

#include <exception>


namespace std{
    class bad_alloc : public exception {
    public:
        virtual ~bad_alloc(){}
        virtual const char* what() const{
            return "bad_alloc";
        }
    };
}


#endif
