@pipedream/platform
Version:
Pipedream platform globals (typing and runtime type checking)
12 lines (11 loc) • 366 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.ConfigurationError = void 0;
class ConfigurationError extends Error {
constructor(message, exposeStack = false) {
super(message);
this.name = "ConfigurationError";
this.exposeStack = exposeStack;
}
}
exports.ConfigurationError = ConfigurationError;
;