#ifndef NO_SUCH_ITEM_EXCEPTION_H #define NO_SUCH_ITEM_EXCEPTION_H #include "Exception.h" class NoSuchItemException : public Exception { public: NoSuchItemException(string newmsg): Exception(newmsg){} }; #endif