// $Id: ConfigException.hh 4859 2005-11-12 21:56:00Z manuelbi $ #ifndef CONFIGEXCEPTION_HH #define CONFIGEXCEPTION_HH #include "MSXException.hh" namespace openmsx { class ConfigException : public MSXException { public: explicit ConfigException(const std::string& desc) : MSXException(desc) {} }; } // namespace openmsx #endif