musicmud-2.1.6/data/
musicmud-2.1.6/data/help/
musicmud-2.1.6/data/policy/
musicmud-2.1.6/data/wild/
musicmud-2.1.6/data/world/
musicmud-2.1.6/doc/
musicmud-2.1.6/src/ident/
musicmud-2.1.6/src/lua/
musicmud-2.1.6/src/lua/include/
musicmud-2.1.6/src/lua/src/lib/
musicmud-2.1.6/src/lua/src/lua/
musicmud-2.1.6/src/lua/src/luac/
#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