28 lines
584 B
C
28 lines
584 B
C
![]() |
// SPDX-License-Identifier: MIT
|
||
|
/**
|
||
|
Copyright (c) 2020 - 2022 Beckhoff Automation GmbH & Co. KG
|
||
|
*/
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include <stdexcept>
|
||
|
#include <string>
|
||
|
|
||
|
struct AdsException : std::exception {
|
||
|
AdsException(const long adsErrorCode) :
|
||
|
errorCode(adsErrorCode),
|
||
|
m_Message("Ads operation failed with error code " + std::to_string(adsErrorCode) + ".")
|
||
|
{}
|
||
|
|
||
|
virtual ~AdsException() throw (){}
|
||
|
|
||
|
virtual const char* what() const throw ()
|
||
|
{
|
||
|
return m_Message.c_str();
|
||
|
}
|
||
|
|
||
|
const long errorCode;
|
||
|
protected:
|
||
|
const std::string m_Message;
|
||
|
};
|