/* Copyright 2017 The MathWorks, Inc. */ #ifndef ENGINE_EXCEPTION_IMPL_HPP #define ENGINE_EXCEPTION_IMPL_HPP #include #include #include #include #include "../engine_exception.hpp" #include #if defined(_WIN32 ) #define NOEXCEPT throw() #else #define NOEXCEPT noexcept #endif namespace matlab { namespace engine { inline EngineException::EngineException() {} inline EngineException::EngineException(const std::string& msg) : Exception(msg) {} } } #endif /* ENGINE_EXCEPTION_IMPL_HPP */