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