libcarla/include/system/rpc/rpc_error.h

56 lines
1.6 KiB
C
Raw Permalink Normal View History

2024-10-18 13:19:59 +08:00
#pragma once
#ifndef RPC_ERROR_H_NEOOSTKY
#define RPC_ERROR_H_NEOOSTKY
#include <exception>
#include "rpc/msgpack.hpp"
namespace rpc {
//! \brief This exception is thrown by the client when the server signals an
//! error during a call.
//!
//! This type allows clients to handle arbitrary error objects as the
//! msgpack-rpc specification allows. In client code you probably don't want to
//! throw it, hence its constructor is private.
class rpc_error : public std::runtime_error {
public:
//! \brief Returns the name of the function that was
//! called on the server while the error occurred.
std::string get_function_name() const;
//! \brief Returns the error object that the server
//! provided.
virtual RPCLIB_MSGPACK::object_handle &get_error();
private:
friend class client;
rpc_error(std::string const &what_arg, std::string const &function_name,
std::shared_ptr<RPCLIB_MSGPACK::object_handle> o);
private:
std::string func_name_;
std::shared_ptr<RPCLIB_MSGPACK::object_handle> ob_h_;
};
//! \brief This exception is thrown by the client when either the connection
//! or a call takes more time than it is set in set_timeout.
//! \note There isn't necessarily a timeout set, it is an optional value.
class timeout : public std::runtime_error {
public:
//! \brief Describes the exception.
const char *what() const noexcept override;
private:
friend class client;
explicit timeout(std::string const &what_arg);
std::string formatted;
};
} /* rpc */
#endif /* end of include guard: RPC_ERROR_H_NEOOSTKY */