class ov::Exception

Base error for ov runtime errors.

#include <except.hpp>

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

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

// direct descendants

class AssertFailure;
class Busy;
class Cancelled;
struct UnknownActivationFunction;