File Explorer

/proc/self/root/var/runtime/node_modules/@aws-sdk/client-entityresolution/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 · 104 lines
"use strict";Object.defineProperty(exports, "__esModule", { value: true });exports.ExceedsLimitException = exports.ValidationException = exports.ThrottlingException = exports.ResourceNotFoundException = exports.InternalServerException = exports.ConflictException = exports.AccessDeniedException = void 0;const EntityResolutionServiceException_1 = require("./EntityResolutionServiceException");class AccessDeniedException extends EntityResolutionServiceException_1.EntityResolutionServiceException {    name = "AccessDeniedException";    $fault = "client";    constructor(opts) {        super({            name: "AccessDeniedException",            $fault: "client",            ...opts,        });        Object.setPrototypeOf(this, AccessDeniedException.prototype);    }}exports.AccessDeniedException = AccessDeniedException;class ConflictException extends EntityResolutionServiceException_1.EntityResolutionServiceException {    name = "ConflictException";    $fault = "client";    constructor(opts) {        super({            name: "ConflictException",            $fault: "client",            ...opts,        });        Object.setPrototypeOf(this, ConflictException.prototype);    }}exports.ConflictException = ConflictException;class InternalServerException extends EntityResolutionServiceException_1.EntityResolutionServiceException {    name = "InternalServerException";    $fault = "server";    $retryable = {};    constructor(opts) {        super({            name: "InternalServerException",            $fault: "server",            ...opts,        });        Object.setPrototypeOf(this, InternalServerException.prototype);    }}exports.InternalServerException = InternalServerException;class ResourceNotFoundException extends EntityResolutionServiceException_1.EntityResolutionServiceException {    name = "ResourceNotFoundException";    $fault = "client";    constructor(opts) {        super({            name: "ResourceNotFoundException",            $fault: "client",            ...opts,        });        Object.setPrototypeOf(this, ResourceNotFoundException.prototype);    }}exports.ResourceNotFoundException = ResourceNotFoundException;class ThrottlingException extends EntityResolutionServiceException_1.EntityResolutionServiceException {    name = "ThrottlingException";    $fault = "client";    $retryable = {        throttling: true,    };    constructor(opts) {        super({            name: "ThrottlingException",            $fault: "client",            ...opts,        });        Object.setPrototypeOf(this, ThrottlingException.prototype);    }}exports.ThrottlingException = ThrottlingException;class ValidationException extends EntityResolutionServiceException_1.EntityResolutionServiceException {    name = "ValidationException";    $fault = "client";    constructor(opts) {        super({            name: "ValidationException",            $fault: "client",            ...opts,        });        Object.setPrototypeOf(this, ValidationException.prototype);    }}exports.ValidationException = ValidationException;class ExceedsLimitException extends EntityResolutionServiceException_1.EntityResolutionServiceException {    name = "ExceedsLimitException";    $fault = "client";    quotaName;    quotaValue;    constructor(opts) {        super({            name: "ExceedsLimitException",            $fault: "client",            ...opts,        });        Object.setPrototypeOf(this, ExceedsLimitException.prototype);        this.quotaName = opts.quotaName;        this.quotaValue = opts.quotaValue;    }}exports.ExceedsLimitException = ExceedsLimitException;