/proc/self/root/var/runtime/node_modules/@aws-sdk/client-apprunner/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.ResourceNotFoundException = exports.ServiceQuotaExceededException = exports.InvalidStateException = exports.InvalidRequestException = exports.InternalServiceErrorException = void 0;const AppRunnerServiceException_1 = require("./AppRunnerServiceException");class InternalServiceErrorException extends AppRunnerServiceException_1.AppRunnerServiceException { name = "InternalServiceErrorException"; $fault = "server"; Message; constructor(opts) { super({ name: "InternalServiceErrorException", $fault: "server", ...opts, }); Object.setPrototypeOf(this, InternalServiceErrorException.prototype); this.Message = opts.Message; }}exports.InternalServiceErrorException = InternalServiceErrorException;class InvalidRequestException extends AppRunnerServiceException_1.AppRunnerServiceException { name = "InvalidRequestException"; $fault = "client"; Message; constructor(opts) { super({ name: "InvalidRequestException", $fault: "client", ...opts, }); Object.setPrototypeOf(this, InvalidRequestException.prototype); this.Message = opts.Message; }}exports.InvalidRequestException = InvalidRequestException;class InvalidStateException extends AppRunnerServiceException_1.AppRunnerServiceException { name = "InvalidStateException"; $fault = "client"; Message; constructor(opts) { super({ name: "InvalidStateException", $fault: "client", ...opts, }); Object.setPrototypeOf(this, InvalidStateException.prototype); this.Message = opts.Message; }}exports.InvalidStateException = InvalidStateException;class ServiceQuotaExceededException extends AppRunnerServiceException_1.AppRunnerServiceException { name = "ServiceQuotaExceededException"; $fault = "client"; Message; constructor(opts) { super({ name: "ServiceQuotaExceededException", $fault: "client", ...opts, }); Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype); this.Message = opts.Message; }}exports.ServiceQuotaExceededException = ServiceQuotaExceededException;class ResourceNotFoundException extends AppRunnerServiceException_1.AppRunnerServiceException { name = "ResourceNotFoundException"; $fault = "client"; Message; constructor(opts) { super({ name: "ResourceNotFoundException", $fault: "client", ...opts, }); Object.setPrototypeOf(this, ResourceNotFoundException.prototype); this.Message = opts.Message; }}exports.ResourceNotFoundException = ResourceNotFoundException;