1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
|
/// Copyright 2020 Daniel Parker
// Distributed under the Boost license, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
// See https://github.com/danielaparker/jsoncons for latest version
#ifndef JSONCONS_JSONSCHEMA_JSONSCHEMA_ERROR_HPP
#define JSONCONS_JSONSCHEMA_JSONSCHEMA_ERROR_HPP
#include <jsoncons/json_exception.hpp>
#include <system_error>
namespace jsoncons {
namespace jsonschema {
class schema_error : public std::runtime_error, public virtual json_exception
{
public:
schema_error(const std::string& message)
: std::runtime_error(message)
{
}
const char* what() const noexcept override
{
return std::runtime_error::what();
}
};
class validation_error : public std::runtime_error, public virtual json_exception
{
public:
validation_error(const std::string& message)
: std::runtime_error(message)
{
}
const char* what() const noexcept override
{
return std::runtime_error::what();
}
};
class validation_output
{
std::string keyword_;
std::string absolute_keyword_location_;
std::string instance_location_;
std::string message_;
std::vector<validation_output> nested_errors_;
public:
validation_output(std::string keyword,
std::string absolute_keyword_location,
std::string instance_location,
std::string message)
: keyword_(std::move(keyword)),
absolute_keyword_location_(std::move(absolute_keyword_location)),
instance_location_(std::move(instance_location)),
message_(std::move(message))
{
}
validation_output(const std::string& keyword,
const std::string& absolute_keyword_location,
const std::string& instance_location,
const std::string& message,
const std::vector<validation_output>& nested_errors)
: keyword_(keyword),
absolute_keyword_location_(absolute_keyword_location),
instance_location_(instance_location),
message_(message),
nested_errors_(nested_errors)
{
}
const std::string& instance_location() const
{
return instance_location_;
}
const std::string& message() const
{
return message_;
}
const std::string& absolute_keyword_location() const
{
return absolute_keyword_location_;
}
const std::string& keyword() const
{
return keyword_;
}
const std::vector<validation_output>& nested_errors() const
{
return nested_errors_;
}
};
} // namespace jsonschema
} // namespace jsoncons
#endif // JSONCONS_JSONSCHEMA_JSONSCHEMA_ERROR_HPP
|