mirror of
https://github.com/XRPLF/rippled.git
synced 2026-06-02 16:26:48 +00:00
13 lines
160 B
C++
13 lines
160 B
C++
#pragma once
|
|
|
|
#include <stdexcept>
|
|
|
|
namespace json {
|
|
|
|
struct Error : std::runtime_error
|
|
{
|
|
using std::runtime_error::runtime_error;
|
|
};
|
|
|
|
} // namespace json
|