JSON RPC
JSON-RPC 2.0 library for C++
exception.cpp
Go to the documentation of this file.
1/**
2 * @file
3 * @brief Implementation of the JSON RPC exception class.
4 *
5 * This file contains the implementation of the destructor for the `exception` class.
6 * The destructor is defined here to avoid vtables in every translation unit that includes the header.
7 */
8
9#include "exception.h"
10
11wwa::json_rpc::exception::~exception() = default;
JSON RPC Exception class.
Definition exception.h:79
~exception() override
Default destructor.