#ifndef EMSG_H #define EMSG_H //! An exception with an error message that should be shown to the player who executed the command that caused the throw. class emsg { public: string msg; emsg(string m) : msg(m) { } virtual ~emsg() { } }; #endif