File Explorer

/proc/self/root/var/runtime/node_modules/@aws-sdk/client-appsync/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.js6.3 KB · 178 lines
"use strict";Object.defineProperty(exports, "__esModule", { value: true });exports.GraphQLSchemaException = exports.ConflictException = exports.ServiceQuotaExceededException = exports.UnauthorizedException = exports.LimitExceededException = exports.ConcurrentModificationException = exports.NotFoundException = exports.InternalFailureException = exports.BadRequestException = exports.ApiLimitExceededException = exports.ApiKeyValidityOutOfBoundsException = exports.ApiKeyLimitExceededException = exports.AccessDeniedException = void 0;const AppSyncServiceException_1 = require("./AppSyncServiceException");class AccessDeniedException extends AppSyncServiceException_1.AppSyncServiceException {    name = "AccessDeniedException";    $fault = "client";    constructor(opts) {        super({            name: "AccessDeniedException",            $fault: "client",            ...opts,        });        Object.setPrototypeOf(this, AccessDeniedException.prototype);    }}exports.AccessDeniedException = AccessDeniedException;class ApiKeyLimitExceededException extends AppSyncServiceException_1.AppSyncServiceException {    name = "ApiKeyLimitExceededException";    $fault = "client";    constructor(opts) {        super({            name: "ApiKeyLimitExceededException",            $fault: "client",            ...opts,        });        Object.setPrototypeOf(this, ApiKeyLimitExceededException.prototype);    }}exports.ApiKeyLimitExceededException = ApiKeyLimitExceededException;class ApiKeyValidityOutOfBoundsException extends AppSyncServiceException_1.AppSyncServiceException {    name = "ApiKeyValidityOutOfBoundsException";    $fault = "client";    constructor(opts) {        super({            name: "ApiKeyValidityOutOfBoundsException",            $fault: "client",            ...opts,        });        Object.setPrototypeOf(this, ApiKeyValidityOutOfBoundsException.prototype);    }}exports.ApiKeyValidityOutOfBoundsException = ApiKeyValidityOutOfBoundsException;class ApiLimitExceededException extends AppSyncServiceException_1.AppSyncServiceException {    name = "ApiLimitExceededException";    $fault = "client";    constructor(opts) {        super({            name: "ApiLimitExceededException",            $fault: "client",            ...opts,        });        Object.setPrototypeOf(this, ApiLimitExceededException.prototype);    }}exports.ApiLimitExceededException = ApiLimitExceededException;class BadRequestException extends AppSyncServiceException_1.AppSyncServiceException {    name = "BadRequestException";    $fault = "client";    reason;    detail;    constructor(opts) {        super({            name: "BadRequestException",            $fault: "client",            ...opts,        });        Object.setPrototypeOf(this, BadRequestException.prototype);        this.reason = opts.reason;        this.detail = opts.detail;    }}exports.BadRequestException = BadRequestException;class InternalFailureException extends AppSyncServiceException_1.AppSyncServiceException {    name = "InternalFailureException";    $fault = "server";    constructor(opts) {        super({            name: "InternalFailureException",            $fault: "server",            ...opts,        });        Object.setPrototypeOf(this, InternalFailureException.prototype);    }}exports.InternalFailureException = InternalFailureException;class NotFoundException extends AppSyncServiceException_1.AppSyncServiceException {    name = "NotFoundException";    $fault = "client";    constructor(opts) {        super({            name: "NotFoundException",            $fault: "client",            ...opts,        });        Object.setPrototypeOf(this, NotFoundException.prototype);    }}exports.NotFoundException = NotFoundException;class ConcurrentModificationException extends AppSyncServiceException_1.AppSyncServiceException {    name = "ConcurrentModificationException";    $fault = "client";    constructor(opts) {        super({            name: "ConcurrentModificationException",            $fault: "client",            ...opts,        });        Object.setPrototypeOf(this, ConcurrentModificationException.prototype);    }}exports.ConcurrentModificationException = ConcurrentModificationException;class LimitExceededException extends AppSyncServiceException_1.AppSyncServiceException {    name = "LimitExceededException";    $fault = "client";    constructor(opts) {        super({            name: "LimitExceededException",            $fault: "client",            ...opts,        });        Object.setPrototypeOf(this, LimitExceededException.prototype);    }}exports.LimitExceededException = LimitExceededException;class UnauthorizedException extends AppSyncServiceException_1.AppSyncServiceException {    name = "UnauthorizedException";    $fault = "client";    constructor(opts) {        super({            name: "UnauthorizedException",            $fault: "client",            ...opts,        });        Object.setPrototypeOf(this, UnauthorizedException.prototype);    }}exports.UnauthorizedException = UnauthorizedException;class ServiceQuotaExceededException extends AppSyncServiceException_1.AppSyncServiceException {    name = "ServiceQuotaExceededException";    $fault = "client";    constructor(opts) {        super({            name: "ServiceQuotaExceededException",            $fault: "client",            ...opts,        });        Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);    }}exports.ServiceQuotaExceededException = ServiceQuotaExceededException;class ConflictException extends AppSyncServiceException_1.AppSyncServiceException {    name = "ConflictException";    $fault = "client";    constructor(opts) {        super({            name: "ConflictException",            $fault: "client",            ...opts,        });        Object.setPrototypeOf(this, ConflictException.prototype);    }}exports.ConflictException = ConflictException;class GraphQLSchemaException extends AppSyncServiceException_1.AppSyncServiceException {    name = "GraphQLSchemaException";    $fault = "client";    constructor(opts) {        super({            name: "GraphQLSchemaException",            $fault: "client",            ...opts,        });        Object.setPrototypeOf(this, GraphQLSchemaException.prototype);    }}exports.GraphQLSchemaException = GraphQLSchemaException;