/proc/self/root/var/runtime/node_modules/@aws-sdk/client-transfer/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.ConflictException = exports.InvalidNextTokenException = exports.ThrottlingException = exports.ServiceUnavailableException = exports.ResourceNotFoundException = exports.ResourceExistsException = exports.InvalidRequestException = exports.InternalServiceError = exports.AccessDeniedException = void 0;const TransferServiceException_1 = require("./TransferServiceException");class AccessDeniedException extends TransferServiceException_1.TransferServiceException { name = "AccessDeniedException"; $fault = "client"; Message; constructor(opts) { super({ name: "AccessDeniedException", $fault: "client", ...opts, }); Object.setPrototypeOf(this, AccessDeniedException.prototype); this.Message = opts.Message; }}exports.AccessDeniedException = AccessDeniedException;class InternalServiceError extends TransferServiceException_1.TransferServiceException { name = "InternalServiceError"; $fault = "server"; Message; constructor(opts) { super({ name: "InternalServiceError", $fault: "server", ...opts, }); Object.setPrototypeOf(this, InternalServiceError.prototype); this.Message = opts.Message; }}exports.InternalServiceError = InternalServiceError;class InvalidRequestException extends TransferServiceException_1.TransferServiceException { 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 ResourceExistsException extends TransferServiceException_1.TransferServiceException { name = "ResourceExistsException"; $fault = "client"; Message; Resource; ResourceType; constructor(opts) { super({ name: "ResourceExistsException", $fault: "client", ...opts, }); Object.setPrototypeOf(this, ResourceExistsException.prototype); this.Message = opts.Message; this.Resource = opts.Resource; this.ResourceType = opts.ResourceType; }}exports.ResourceExistsException = ResourceExistsException;class ResourceNotFoundException extends TransferServiceException_1.TransferServiceException { name = "ResourceNotFoundException"; $fault = "client"; Message; Resource; ResourceType; constructor(opts) { super({ name: "ResourceNotFoundException", $fault: "client", ...opts, }); Object.setPrototypeOf(this, ResourceNotFoundException.prototype); this.Message = opts.Message; this.Resource = opts.Resource; this.ResourceType = opts.ResourceType; }}exports.ResourceNotFoundException = ResourceNotFoundException;class ServiceUnavailableException extends TransferServiceException_1.TransferServiceException { name = "ServiceUnavailableException"; $fault = "server"; Message; constructor(opts) { super({ name: "ServiceUnavailableException", $fault: "server", ...opts, }); Object.setPrototypeOf(this, ServiceUnavailableException.prototype); this.Message = opts.Message; }}exports.ServiceUnavailableException = ServiceUnavailableException;class ThrottlingException extends TransferServiceException_1.TransferServiceException { name = "ThrottlingException"; $fault = "client"; RetryAfterSeconds; constructor(opts) { super({ name: "ThrottlingException", $fault: "client", ...opts, }); Object.setPrototypeOf(this, ThrottlingException.prototype); this.RetryAfterSeconds = opts.RetryAfterSeconds; }}exports.ThrottlingException = ThrottlingException;class InvalidNextTokenException extends TransferServiceException_1.TransferServiceException { name = "InvalidNextTokenException"; $fault = "client"; Message; constructor(opts) { super({ name: "InvalidNextTokenException", $fault: "client", ...opts, }); Object.setPrototypeOf(this, InvalidNextTokenException.prototype); this.Message = opts.Message; }}exports.InvalidNextTokenException = InvalidNextTokenException;class ConflictException extends TransferServiceException_1.TransferServiceException { name = "ConflictException"; $fault = "client"; Message; constructor(opts) { super({ name: "ConflictException", $fault: "client", ...opts, }); Object.setPrototypeOf(this, ConflictException.prototype); this.Message = opts.Message; }}exports.ConflictException = ConflictException;