SeaBreeze
ProtocolTransactionException.h
Go to the documentation of this file.
1 /***************************************************/
36 #ifndef SEABREEZE_PROTOCOLTRANSACTIONEXCEPTION_H
37 #define SEABREEZE_PROTOCOLTRANSACTIONEXCEPTION_H
38 
39 #include <stdexcept>
40 #include <string>
41 
42 namespace seabreeze {
43 
44  class ProtocolTransactionException : public std::runtime_error {
45  public:
46  ProtocolTransactionException(const std::string &error);
47  };
48 
49 }
50 
51 #endif
Encapsulates all SeaBreeze classes.
Definition: DeviceFactory.h:42
Definition: ProtocolTransactionException.h:44