AssertionError#

class pandas::AssertionError#

pandas C++ class.

Example#

#include <pandas/pandas.h>
using namespace pandas;

// Use AssertionError
AssertionError obj;
// ... operations ...

Constructors#

Signature

Location

Example

explicit AssertionError(const std::string& msg) : std::runtime_error(msg)

pd_exceptions.h:110

explicit AssertionError(const char\* msg) : std::runtime_error(msg)

pd_exceptions.h:111