bf4166f4635d654415f7ff67566b021a2465ea766e1e1ad3df61b0dfcc7232f4ce6cfb17d2b7792838d4debeba4678eb317351988603b093c776b9b9ebf56b 310 B

1234567891011121314
  1. export class CwdError extends Error {
  2. path;
  3. code;
  4. syscall = 'chdir';
  5. constructor(path, code) {
  6. super(`${code}: Cannot cd into '${path}'`);
  7. this.path = path;
  8. this.code = code;
  9. }
  10. get name() {
  11. return 'CwdError';
  12. }
  13. }
  14. //# sourceMappingURL=cwd-error.js.map