DYT/Tool/matlab/include/MatlabCppSharedLib/cppsharedlib_exception.hpp

28 lines
615 B
C++
Raw Normal View History

2024-11-22 15:19:31 +00:00
/* Copyright 2017 The MathWorks, Inc. */
#ifndef CPPSHAREDLIB_EXCEPTION_HPP
#define CPPSHAREDLIB_EXCEPTION_HPP
#include <MatlabExecutionInterface/exception.hpp>
#include <MatlabExecutionInterface/detail/exception_impl.hpp>
namespace matlab {
namespace cpplib {
class CppSharedLibException final : public matlab::execution::Exception {
public:
CppSharedLibException();
/**
* Constructor that accepts an error message
*/
CppSharedLibException(const std::string& msg);
};
}
}
#endif /* CPPSHAREDLIB_EXCEPTION_HPP */