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