.. _vnx.JRPC_Error: vnx.JRPC_Error ============== .. cpp:namespace:: vnx::JRPC_Error Class ----- The error object that is contained in error messages returned by :ref:`jsonrpc`. Fields ------ .. cpp:member:: int code One of the following error codes:: static const int PARSE_ERROR = -32700; static const int INVALID_REQUEST = -32600; static const int METHOD_NOT_FOUND = -32601; static const int INVALID_PARAMS = -32602; static const int INTERNAL_ERROR = -32603; static const int PERMISSION_DENIED = 403; static const int EXCEPTION = 500; .. cpp:member:: string message A short message to indicate what went wrong. .. cpp:member:: Exception *data The actual exeption object as thrown on the server side.