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