File Explorer

/proc/self/root/var/runtime/node_modules/@aws-sdk/client-pi/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.6 KB · 50 lines
"use strict";Object.defineProperty(exports, "__esModule", { value: true });exports.NotAuthorizedException = exports.InvalidArgumentException = exports.InternalServiceError = void 0;const PIServiceException_1 = require("./PIServiceException");class InternalServiceError extends PIServiceException_1.PIServiceException {    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 InvalidArgumentException extends PIServiceException_1.PIServiceException {    name = "InvalidArgumentException";    $fault = "client";    Message;    constructor(opts) {        super({            name: "InvalidArgumentException",            $fault: "client",            ...opts,        });        Object.setPrototypeOf(this, InvalidArgumentException.prototype);        this.Message = opts.Message;    }}exports.InvalidArgumentException = InvalidArgumentException;class NotAuthorizedException extends PIServiceException_1.PIServiceException {    name = "NotAuthorizedException";    $fault = "client";    Message;    constructor(opts) {        super({            name: "NotAuthorizedException",            $fault: "client",            ...opts,        });        Object.setPrototypeOf(this, NotAuthorizedException.prototype);        this.Message = opts.Message;    }}exports.NotAuthorizedException = NotAuthorizedException;