fix8  version 1.4.0
Open Source C++ FIX Framework
FIX8::MsgSequenceTooLow Struct Reference

A message was received with an out of sequence sequence number. More...

#include <f8exception.hpp>

Inheritance diagram for FIX8::MsgSequenceTooLow:
FIX8::f8Exception

Public Member Functions

 MsgSequenceTooLow (unsigned rseqnum, unsigned eseqnum)
 
- Public Member Functions inherited from FIX8::f8Exception
 f8Exception (bool force_logoff=false)
 
 f8Exception (const std::string &msg, bool force_logoff=false)
 
 f8Exception (const char *msg, bool force_logoff=false)
 
template<typename T >
 f8Exception (const std::string &msg, const T &val, bool force_logoff=false)
 
virtual ~f8Exception () throw ()
 Dtor. More...
 
const char * what () const throw ()
 
bool force_logoff () const
 

Public Attributes

const unsigned _rseqnum
 
const unsigned _eseqnum
 

Additional Inherited Members

- Protected Member Functions inherited from FIX8::f8Exception
template<typename T >
void format (const std::string &msg, const T what)
 
template<typename T , typename S >
void format (const std::string &msg, const T what, const std::string &msg2, const S what2)
 

Detailed Description

A message was received with an out of sequence sequence number.

Definition at line 174 of file f8exception.hpp.

Constructor & Destructor Documentation

FIX8::MsgSequenceTooLow::MsgSequenceTooLow ( unsigned  rseqnum,
unsigned  eseqnum 
)
inline

Definition at line 177 of file f8exception.hpp.

References FIX8::f8Exception::format().

178  : f8Exception(true), _rseqnum(rseqnum), _eseqnum(eseqnum)
179  { format("Message Sequence too low, received", rseqnum, " expected", eseqnum); }
void format(const std::string &msg, const T what)
Definition: f8exception.hpp:97
f8Exception(bool force_logoff=false)
Definition: f8exception.hpp:57
const unsigned _eseqnum
const unsigned _rseqnum

Member Data Documentation

const unsigned FIX8::MsgSequenceTooLow::_eseqnum

Definition at line 176 of file f8exception.hpp.

const unsigned FIX8::MsgSequenceTooLow::_rseqnum

Definition at line 176 of file f8exception.hpp.


The documentation for this struct was generated from the following file: