File Explorer

/proc/self/root/var/runtime/node_modules/@aws-sdk/client-datasync/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 /.

errors.js1.2 KB · 37 lines
"use strict";Object.defineProperty(exports, "__esModule", { value: true });exports.InvalidRequestException = exports.InternalException = void 0;const DataSyncServiceException_1 = require("./DataSyncServiceException");class InternalException extends DataSyncServiceException_1.DataSyncServiceException {    name = "InternalException";    $fault = "server";    errorCode;    constructor(opts) {        super({            name: "InternalException",            $fault: "server",            ...opts,        });        Object.setPrototypeOf(this, InternalException.prototype);        this.errorCode = opts.errorCode;    }}exports.InternalException = InternalException;class InvalidRequestException extends DataSyncServiceException_1.DataSyncServiceException {    name = "InvalidRequestException";    $fault = "client";    errorCode;    datasyncErrorCode;    constructor(opts) {        super({            name: "InvalidRequestException",            $fault: "client",            ...opts,        });        Object.setPrototypeOf(this, InvalidRequestException.prototype);        this.errorCode = opts.errorCode;        this.datasyncErrorCode = opts.datasyncErrorCode;    }}exports.InvalidRequestException = InvalidRequestException;