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