"use strict"; var __defProp = Object.defineProperty; var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value; var __publicField = (obj, key, value) => { __defNormalProp(obj, typeof key !== "symbol" ? key + "" : key, value); return value; }; Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" }); class NotFoundError extends Error { constructor(path, options) { var __super = (...args) => { super(...args); __publicField(this, "path"); }; if (!(options == null ? void 0 : options.cause)) { __super(`Could lookup file for path \`${path}\``, options); } else { __super(`Could lookup file for path \`${path}\` ${options.cause.toString()}`, options); } this.path = path; } } exports.NotFoundError = NotFoundError; //# sourceMappingURL=errors.cjs.map