source: node_modules/@swagger-api/apidom-reference/cjs/errors/PluginError.cjs@ 65b6638

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

Initial commit

  • Property mode set to 100644
File size: 363 bytes
Line 
1"use strict";
2
3exports.__esModule = true;
4exports.default = void 0;
5var _apidomError = require("@swagger-api/apidom-error");
6class PluginError extends _apidomError.ApiDOMError {
7 plugin;
8 constructor(message, options) {
9 super(message, {
10 cause: options.cause
11 });
12 this.plugin = options.plugin;
13 }
14}
15var _default = exports.default = PluginError;
Note: See TracBrowser for help on using the repository browser.