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 destructor for the exception classes.
6 * The destructors are 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:86
~exception() override
Default destructor.
Exception thrown when the method is not found.
Definition exception.h:238
~method_not_found_exception() override
Default destructor.