File Explorer

/proc/self/root/var/runtime/node_modules/@aws-sdk/client-accessanalyzer/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.js5.1 KB · 147 lines
"use strict";Object.defineProperty(exports, "__esModule", { value: true });exports.UnprocessableEntityException = exports.InvalidParameterException = exports.ValidationException = exports.ThrottlingException = exports.ServiceQuotaExceededException = exports.ResourceNotFoundException = exports.InternalServerException = exports.ConflictException = exports.AccessDeniedException = void 0;const AccessAnalyzerServiceException_1 = require("./AccessAnalyzerServiceException");class AccessDeniedException extends AccessAnalyzerServiceException_1.AccessAnalyzerServiceException {    name = "AccessDeniedException";    $fault = "client";    constructor(opts) {        super({            name: "AccessDeniedException",            $fault: "client",            ...opts,        });        Object.setPrototypeOf(this, AccessDeniedException.prototype);    }}exports.AccessDeniedException = AccessDeniedException;class ConflictException extends AccessAnalyzerServiceException_1.AccessAnalyzerServiceException {    name = "ConflictException";    $fault = "client";    resourceId;    resourceType;    constructor(opts) {        super({            name: "ConflictException",            $fault: "client",            ...opts,        });        Object.setPrototypeOf(this, ConflictException.prototype);        this.resourceId = opts.resourceId;        this.resourceType = opts.resourceType;    }}exports.ConflictException = ConflictException;class InternalServerException extends AccessAnalyzerServiceException_1.AccessAnalyzerServiceException {    name = "InternalServerException";    $fault = "server";    $retryable = {};    retryAfterSeconds;    constructor(opts) {        super({            name: "InternalServerException",            $fault: "server",            ...opts,        });        Object.setPrototypeOf(this, InternalServerException.prototype);        this.retryAfterSeconds = opts.retryAfterSeconds;    }}exports.InternalServerException = InternalServerException;class ResourceNotFoundException extends AccessAnalyzerServiceException_1.AccessAnalyzerServiceException {    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 ServiceQuotaExceededException extends AccessAnalyzerServiceException_1.AccessAnalyzerServiceException {    name = "ServiceQuotaExceededException";    $fault = "client";    resourceId;    resourceType;    constructor(opts) {        super({            name: "ServiceQuotaExceededException",            $fault: "client",            ...opts,        });        Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);        this.resourceId = opts.resourceId;        this.resourceType = opts.resourceType;    }}exports.ServiceQuotaExceededException = ServiceQuotaExceededException;class ThrottlingException extends AccessAnalyzerServiceException_1.AccessAnalyzerServiceException {    name = "ThrottlingException";    $fault = "client";    $retryable = {        throttling: true,    };    retryAfterSeconds;    constructor(opts) {        super({            name: "ThrottlingException",            $fault: "client",            ...opts,        });        Object.setPrototypeOf(this, ThrottlingException.prototype);        this.retryAfterSeconds = opts.retryAfterSeconds;    }}exports.ThrottlingException = ThrottlingException;class ValidationException extends AccessAnalyzerServiceException_1.AccessAnalyzerServiceException {    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 InvalidParameterException extends AccessAnalyzerServiceException_1.AccessAnalyzerServiceException {    name = "InvalidParameterException";    $fault = "client";    constructor(opts) {        super({            name: "InvalidParameterException",            $fault: "client",            ...opts,        });        Object.setPrototypeOf(this, InvalidParameterException.prototype);    }}exports.InvalidParameterException = InvalidParameterException;class UnprocessableEntityException extends AccessAnalyzerServiceException_1.AccessAnalyzerServiceException {    name = "UnprocessableEntityException";    $fault = "client";    $retryable = {};    constructor(opts) {        super({            name: "UnprocessableEntityException",            $fault: "client",            ...opts,        });        Object.setPrototypeOf(this, UnprocessableEntityException.prototype);    }}exports.UnprocessableEntityException = UnprocessableEntityException;