class ngraph::ngraph_error

Base error for ngraph runtime errors.

#include <except.hpp>

class ngraph_error: public std::runtime_error
{
public:
    // construction

    ngraph_error(const std::string& what_arg);
    ngraph_error(const char* what_arg);
    ngraph_error(const std::stringstream& what_arg);
};

// direct descendants

class CheckFailure;
struct UnknownAttribute;
struct UnknownActivationFunction;