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