InitException.hh 349 B

1234567891011121314151617181920
  1. #ifndef INITEXCEPTION_HH
  2. #define INITEXCEPTION_HH
  3. #include "MSXException.hh"
  4. namespace openmsx {
  5. /** Thrown when a subsystem initialisation fails.
  6. * For example: opening video surface, opening audio output etc.
  7. */
  8. class InitException final : public MSXException
  9. {
  10. public:
  11. using MSXException::MSXException;
  12. };
  13. } // namespace openmsx
  14. #endif