File Explorer

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