/proc/self/root/var/runtime/node_modules/@aws-sdk/client-greengrass/dist-cjs/models
This explorer reads the filesystem of the server it runs on, so /workspace/user isn't present here. Browsing and the terminal still work against this server's own disk from /.
"use strict";Object.defineProperty(exports, "__esModule", { value: true });exports.InternalServerErrorException = exports.BadRequestException = void 0;const GreengrassServiceException_1 = require("./GreengrassServiceException");class BadRequestException extends GreengrassServiceException_1.GreengrassServiceException { name = "BadRequestException"; $fault = "client"; ErrorDetails; Message; constructor(opts) { super({ name: "BadRequestException", $fault: "client", ...opts, }); Object.setPrototypeOf(this, BadRequestException.prototype); this.ErrorDetails = opts.ErrorDetails; this.Message = opts.Message; }}exports.BadRequestException = BadRequestException;class InternalServerErrorException extends GreengrassServiceException_1.GreengrassServiceException { name = "InternalServerErrorException"; $fault = "server"; ErrorDetails; Message; constructor(opts) { super({ name: "InternalServerErrorException", $fault: "server", ...opts, }); Object.setPrototypeOf(this, InternalServerErrorException.prototype); this.ErrorDetails = opts.ErrorDetails; this.Message = opts.Message; }}exports.InternalServerErrorException = InternalServerErrorException;