mirror of
https://github.com/XRPLF/rippled.git
synced 2025-12-06 17:27:55 +00:00
16 lines
266 B
C++
16 lines
266 B
C++
#ifndef XRPL_JSON_JSON_ERRORS_H_INCLUDED
|
|
#define XRPL_JSON_JSON_ERRORS_H_INCLUDED
|
|
|
|
#include <stdexcept>
|
|
|
|
namespace Json {
|
|
|
|
struct error : std::runtime_error
|
|
{
|
|
using std::runtime_error::runtime_error;
|
|
};
|
|
|
|
} // namespace Json
|
|
|
|
#endif // JSON_FORWARDS_H_INCLUDED
|