File Explorer

/proc/self/root/var/runtime/node_modules/@aws-sdk/client-gameliftstreams/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.js3.9 KB · 114 lines
"use strict";Object.defineProperty(exports, "__esModule", { value: true });exports.ConflictException = exports.ValidationException = exports.ThrottlingException = exports.ServiceQuotaExceededException = exports.ResourceNotFoundException = exports.InternalServerException = exports.AccessDeniedException = void 0;const GameLiftStreamsServiceException_1 = require("./GameLiftStreamsServiceException");class AccessDeniedException extends GameLiftStreamsServiceException_1.GameLiftStreamsServiceException {    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 InternalServerException extends GameLiftStreamsServiceException_1.GameLiftStreamsServiceException {    name = "InternalServerException";    $fault = "server";    $retryable = {};    Message;    constructor(opts) {        super({            name: "InternalServerException",            $fault: "server",            ...opts,        });        Object.setPrototypeOf(this, InternalServerException.prototype);        this.Message = opts.Message;    }}exports.InternalServerException = InternalServerException;class ResourceNotFoundException extends GameLiftStreamsServiceException_1.GameLiftStreamsServiceException {    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;class ServiceQuotaExceededException extends GameLiftStreamsServiceException_1.GameLiftStreamsServiceException {    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 ThrottlingException extends GameLiftStreamsServiceException_1.GameLiftStreamsServiceException {    name = "ThrottlingException";    $fault = "client";    $retryable = {        throttling: true,    };    Message;    constructor(opts) {        super({            name: "ThrottlingException",            $fault: "client",            ...opts,        });        Object.setPrototypeOf(this, ThrottlingException.prototype);        this.Message = opts.Message;    }}exports.ThrottlingException = ThrottlingException;class ValidationException extends GameLiftStreamsServiceException_1.GameLiftStreamsServiceException {    name = "ValidationException";    $fault = "client";    Message;    constructor(opts) {        super({            name: "ValidationException",            $fault: "client",            ...opts,        });        Object.setPrototypeOf(this, ValidationException.prototype);        this.Message = opts.Message;    }}exports.ValidationException = ValidationException;class ConflictException extends GameLiftStreamsServiceException_1.GameLiftStreamsServiceException {    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;