/proc/self/root/var/runtime/node_modules/@aws-sdk/client-appconfigdata/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.ThrottlingException = exports.ResourceNotFoundException = exports.InternalServerException = exports.BadRequestException = void 0;const AppConfigDataServiceException_1 = require("./AppConfigDataServiceException");class BadRequestException extends AppConfigDataServiceException_1.AppConfigDataServiceException { name = "BadRequestException"; $fault = "client"; Message; Reason; Details; constructor(opts) { super({ name: "BadRequestException", $fault: "client", ...opts, }); Object.setPrototypeOf(this, BadRequestException.prototype); this.Message = opts.Message; this.Reason = opts.Reason; this.Details = opts.Details; }}exports.BadRequestException = BadRequestException;class InternalServerException extends AppConfigDataServiceException_1.AppConfigDataServiceException { name = "InternalServerException"; $fault = "server"; Message; constructor(opts) { super({ name: "InternalServerException", $fault: "server", ...opts, }); Object.setPrototypeOf(this, InternalServerException.prototype); this.Message = opts.Message; }}exports.InternalServerException = InternalServerException;class ResourceNotFoundException extends AppConfigDataServiceException_1.AppConfigDataServiceException { name = "ResourceNotFoundException"; $fault = "client"; Message; ResourceType; ReferencedBy; constructor(opts) { super({ name: "ResourceNotFoundException", $fault: "client", ...opts, }); Object.setPrototypeOf(this, ResourceNotFoundException.prototype); this.Message = opts.Message; this.ResourceType = opts.ResourceType; this.ReferencedBy = opts.ReferencedBy; }}exports.ResourceNotFoundException = ResourceNotFoundException;class ThrottlingException extends AppConfigDataServiceException_1.AppConfigDataServiceException { name = "ThrottlingException"; $fault = "client"; Message; constructor(opts) { super({ name: "ThrottlingException", $fault: "client", ...opts, }); Object.setPrototypeOf(this, ThrottlingException.prototype); this.Message = opts.Message; }}exports.ThrottlingException = ThrottlingException;