00001 /* 00002 * (c) Onix Solutions. 00003 */ 00004 00005 #ifndef EngineException_h 00006 #define EngineException_h 00007 00008 #include <stdexcept> 00009 00010 namespace FIXForge{ 00011 namespace FIX{ 00012 00013 /// Engine-level exception. 00014 class EngineException : public std::domain_error{ 00015 public: 00016 // Constructor. 00017 EngineException(const std::string& message) : std::domain_error(message){}; 00018 }; 00019 }}; 00020 00021 #endif 00022
1.5.2