PlugException.hh 270 B

12345678910111213141516171819
  1. #ifndef PLUGEXCEPTION_HH
  2. #define PLUGEXCEPTION_HH
  3. #include "MSXException.hh"
  4. namespace openmsx {
  5. /** Thrown when a plug action fails.
  6. */
  7. class PlugException final : public MSXException
  8. {
  9. public:
  10. using MSXException::MSXException;
  11. };
  12. } // namespace openmsx
  13. #endif