API  Version 2.0.1
Low-Latency HFT API
 All Classes Functions Variables
api2Exceptions.h
1 #ifndef api2_Exceptions_h
2 #define api2_Exceptions_h
3 #include <exception>
4 namespace API2 {
8  struct UnknownTypeException : public std::exception {
9 
14  const char* what() const throw ();
15  };
16 
20  struct DuplicateKeyException : public std::exception {
21 
26  const char* what() const throw ();
27  };
28 
32  struct MarketDataSubscriptionFailedException : public std::exception {
37  const char* what() const throw ();
38  };
39 }
40 
41 #endif
The MarketDataSubscriptionFailedException struct.
Definition: api2Exceptions.h:32
const char * what() const
what
The DuplicateKeyException struct.
Definition: api2Exceptions.h:20
The UnknownTypeException struct.
Definition: api2Exceptions.h:8
const char * what() const
what