File Explorer

/proc/self/root/var/runtime/node_modules/@aws-sdk/client-batch/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.js977 B · 31 lines
"use strict";Object.defineProperty(exports, "__esModule", { value: true });exports.ServerException = exports.ClientException = void 0;const BatchServiceException_1 = require("./BatchServiceException");class ClientException extends BatchServiceException_1.BatchServiceException {    name = "ClientException";    $fault = "client";    constructor(opts) {        super({            name: "ClientException",            $fault: "client",            ...opts,        });        Object.setPrototypeOf(this, ClientException.prototype);    }}exports.ClientException = ClientException;class ServerException extends BatchServiceException_1.BatchServiceException {    name = "ServerException";    $fault = "server";    constructor(opts) {        super({            name: "ServerException",            $fault: "server",            ...opts,        });        Object.setPrototypeOf(this, ServerException.prototype);    }}exports.ServerException = ServerException;