source: node_modules/@swagger-api/apidom-json-pointer/cjs/errors/CompilationJsonPointerError.cjs

main
Last change on this file was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago

Initial commit

  • Property mode set to 100644
File size: 592 bytes
Line 
1"use strict";
2
3var _interopRequireDefault = require("@babel/runtime-corejs3/helpers/interopRequireDefault").default;
4exports.__esModule = true;
5exports.default = void 0;
6var _JsonPointerError = _interopRequireDefault(require("./JsonPointerError.cjs"));
7class CompilationJsonPointerError extends _JsonPointerError.default {
8 tokens;
9 constructor(message, structuredOptions) {
10 super(message, structuredOptions);
11 if (typeof structuredOptions !== 'undefined') {
12 this.tokens = [...structuredOptions.tokens];
13 }
14 }
15}
16var _default = exports.default = CompilationJsonPointerError;
Note: See TracBrowser for help on using the repository browser.