// $Id: InitException.hh 4859 2005-11-12 21:56:00Z manuelbi $ #ifndef INITEXCEPTION_HH #define INITEXCEPTION_HH #include "MSXException.hh" namespace openmsx { /** Thrown when a subsystem initialisation fails. * For example: opening video surface, opening audio output etc. */ class InitException: public MSXException { public: explicit InitException(const std::string& message) : MSXException(message) { } }; } // namespace openmsx #endif