File Explorer

/proc/self/root/var/runtime/node_modules/@aws-sdk/client-evs/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.6 KB · 108 lines
"use strict";Object.defineProperty(exports, "__esModule", { value: true });exports.TooManyTagsException = exports.TagPolicyException = exports.ServiceQuotaExceededException = exports.InternalServerException = exports.ValidationException = exports.ThrottlingException = exports.ResourceNotFoundException = void 0;const EvsServiceException_1 = require("./EvsServiceException");class ResourceNotFoundException extends EvsServiceException_1.EvsServiceException {    name = "ResourceNotFoundException";    $fault = "client";    resourceId;    resourceType;    constructor(opts) {        super({            name: "ResourceNotFoundException",            $fault: "client",            ...opts,        });        Object.setPrototypeOf(this, ResourceNotFoundException.prototype);        this.resourceId = opts.resourceId;        this.resourceType = opts.resourceType;    }}exports.ResourceNotFoundException = ResourceNotFoundException;class ThrottlingException extends EvsServiceException_1.EvsServiceException {    name = "ThrottlingException";    $fault = "client";    $retryable = {};    retryAfterSeconds;    constructor(opts) {        super({            name: "ThrottlingException",            $fault: "client",            ...opts,        });        Object.setPrototypeOf(this, ThrottlingException.prototype);        this.retryAfterSeconds = opts.retryAfterSeconds;    }}exports.ThrottlingException = ThrottlingException;class ValidationException extends EvsServiceException_1.EvsServiceException {    name = "ValidationException";    $fault = "client";    reason;    fieldList;    constructor(opts) {        super({            name: "ValidationException",            $fault: "client",            ...opts,        });        Object.setPrototypeOf(this, ValidationException.prototype);        this.reason = opts.reason;        this.fieldList = opts.fieldList;    }}exports.ValidationException = ValidationException;class InternalServerException extends EvsServiceException_1.EvsServiceException {    name = "InternalServerException";    $fault = "server";    $retryable = {};    constructor(opts) {        super({            name: "InternalServerException",            $fault: "server",            ...opts,        });        Object.setPrototypeOf(this, InternalServerException.prototype);    }}exports.InternalServerException = InternalServerException;class ServiceQuotaExceededException extends EvsServiceException_1.EvsServiceException {    name = "ServiceQuotaExceededException";    $fault = "client";    constructor(opts) {        super({            name: "ServiceQuotaExceededException",            $fault: "client",            ...opts,        });        Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);    }}exports.ServiceQuotaExceededException = ServiceQuotaExceededException;class TagPolicyException extends EvsServiceException_1.EvsServiceException {    name = "TagPolicyException";    $fault = "client";    constructor(opts) {        super({            name: "TagPolicyException",            $fault: "client",            ...opts,        });        Object.setPrototypeOf(this, TagPolicyException.prototype);    }}exports.TagPolicyException = TagPolicyException;class TooManyTagsException extends EvsServiceException_1.EvsServiceException {    name = "TooManyTagsException";    $fault = "client";    constructor(opts) {        super({            name: "TooManyTagsException",            $fault: "client",            ...opts,        });        Object.setPrototypeOf(this, TooManyTagsException.prototype);    }}exports.TooManyTagsException = TooManyTagsException;