fintp_transport
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
MqException.h
Go to the documentation of this file.
1 #ifndef MQEXCEPTION_H
2 #define MQEXCEPTION_H
3 
4 #include "DllMainTransport.h"
5 #include "AppExceptions.h"
6 
7 namespace FinTP
8 {
9  class ExportedTransportObject MqException : public AppException
10  {
11  private :
13 
14  public:
15  MqException( const string& message, int reasonCode, EventType::EventTypeEnum eventType = EventType::Error, NameValueCollection* additionalInfo = NULL );
16  ~MqException() throw() {};
17 
18  int getReasonCode() const { return m_ReasonCode; }
19  };
20 }
21 
22 #endif