SeaBreeze
UnknownHostException.h
Go to the documentation of this file.
1 /***************************************************/
30 #ifndef SEABREEZE_UNKNOWNHOSTEXCEPTION_H
31 #define SEABREEZE_UNKNOWNHOSTEXCEPTION_H
32 
33 #include <stdexcept>
34 
35 namespace seabreeze {
36 
37  class UnknownHostException : public std::runtime_error {
38  public:
39  UnknownHostException(const std::string &error);
40  };
41 
42 }
43 
44 #endif /* SEABREEZE_UNKNOWNHOSTEXCEPTION_H */
Definition: UnknownHostException.h:37
Encapsulates all SeaBreeze classes.
Definition: DeviceFactory.h:42