/* Copyright 2017 The MathWorks, Inc. */ #ifndef CPPSHAREDLIB_EXCEPTION_HPP #define CPPSHAREDLIB_EXCEPTION_HPP #include #include 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 */