?login_element?

Subversion Repositories NedoOS

Rev

Blame | Last modification | View Log | Download | RSS feed

  1. #ifndef UNITTEST_REQUIREDCHECKEXCEPTION_H
  2. #define UNITTEST_REQUIREDCHECKEXCEPTION_H
  3.  
  4. #include "Config.h"
  5. #ifndef UNITTEST_NO_EXCEPTIONS
  6.  
  7. #include "HelperMacros.h"
  8. #include <exception>
  9.  
  10. namespace UnitTest {
  11.  
  12.    class UNITTEST_LINKAGE RequiredCheckException : public std::exception
  13.    {
  14.    public:
  15.       RequiredCheckException();
  16.       virtual ~RequiredCheckException() throw();
  17.    };
  18.  
  19. }
  20.  
  21. #endif
  22.  
  23. #endif
  24.