Generic hardware access library
|
00001 #ifndef __VerifyException 00002 #define __VerifyException 00003 00004 #include <string> 00005 #include "hal/HardwareAccessException.hh" 00006 00007 namespace HAL { 00008 00031 class VerifyException : public HardwareAccessException { 00032 public: 00033 VerifyException( const std::string message, 00034 const std::string module, 00035 const int line, 00036 const std::string function ) : 00037 HardwareAccessException( "VerifyException", 00038 message, 00039 module, 00040 line, 00041 function ) {}; 00042 00043 VerifyException( const std::string message, 00044 const std::string module, 00045 const int line, 00046 const std::string function, 00047 xcept::Exception& previous ) : 00048 HardwareAccessException( "VerifyException", 00049 message, 00050 module, 00051 line, 00052 function, 00053 previous ) {}; 00054 }; 00055 00056 } /* namespace HAL */ 00057 00058 #endif /* __VerifyException */