3#include "TranscribableException.h"
4#ifdef STARFLEETTOOLBOX_EXPORTS
5#define NOTSUPPOORTEDEXCPT __declspec(dllexport)
7#define NOTSUPPOORTEDEXCPT __declspec(dllimport)
22 SetTranslateCode(
string(translateCode));
31 SetTranslateCode(translateCode);
44 virtual const char*
what() const noexcept {
An exception used when not supported values are fetched to the sensor.
Definition ParameterNotSupportedException.h:14
string _msg
Definition ParameterNotSupportedException.h:48
virtual ~ParameterNotSupportedException() noexcept
Destructor.
Definition ParameterNotSupportedException.h:38
virtual const char * what() const noexcept
Overload of message retrie.
Definition ParameterNotSupportedException.h:44
ParameterNotSupportedException(const char *message, const char *translateCode)
Copy constructor.
Definition ParameterNotSupportedException.h:20
ParameterNotSupportedException(const string &message, string translateCode)
Copy constructor.
Definition ParameterNotSupportedException.h:29