UNPKG
schema-fun
Version:
latest (1.0.0-alpha.5)
1.0.0-alpha.5
1.0.0-alpha.4
1.0.0-alpha.3
1.0.0-alpha.2
1.0.0-alpha.1
JSON schema tools
github.com/jstone-dev/schematools
jstone-dev/schematools
schema-fun
/
dist
/
errors.js
10 lines
•
278 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
export
class
SchemaError
extends
Error
{ context; innerError;
constructor
(
message, context =
undefined
, innerError =
undefined
) {
super
(message);
this
.
context
= context;
this
.
innerError
= innerError; } }
//# sourceMappingURL=errors.js.map