File Explorer

/proc/self/root/var/runtime/node_modules/@aws-sdk/client-keyspaces/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.0 KB · 85 lines
"use strict";Object.defineProperty(exports, "__esModule", { value: true });exports.ResourceNotFoundException = exports.ValidationException = exports.ServiceQuotaExceededException = exports.InternalServerException = exports.ConflictException = exports.AccessDeniedException = void 0;const KeyspacesServiceException_1 = require("./KeyspacesServiceException");class AccessDeniedException extends KeyspacesServiceException_1.KeyspacesServiceException {    name = "AccessDeniedException";    $fault = "client";    constructor(opts) {        super({            name: "AccessDeniedException",            $fault: "client",            ...opts,        });        Object.setPrototypeOf(this, AccessDeniedException.prototype);    }}exports.AccessDeniedException = AccessDeniedException;class ConflictException extends KeyspacesServiceException_1.KeyspacesServiceException {    name = "ConflictException";    $fault = "client";    constructor(opts) {        super({            name: "ConflictException",            $fault: "client",            ...opts,        });        Object.setPrototypeOf(this, ConflictException.prototype);    }}exports.ConflictException = ConflictException;class InternalServerException extends KeyspacesServiceException_1.KeyspacesServiceException {    name = "InternalServerException";    $fault = "server";    constructor(opts) {        super({            name: "InternalServerException",            $fault: "server",            ...opts,        });        Object.setPrototypeOf(this, InternalServerException.prototype);    }}exports.InternalServerException = InternalServerException;class ServiceQuotaExceededException extends KeyspacesServiceException_1.KeyspacesServiceException {    name = "ServiceQuotaExceededException";    $fault = "client";    constructor(opts) {        super({            name: "ServiceQuotaExceededException",            $fault: "client",            ...opts,        });        Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);    }}exports.ServiceQuotaExceededException = ServiceQuotaExceededException;class ValidationException extends KeyspacesServiceException_1.KeyspacesServiceException {    name = "ValidationException";    $fault = "client";    constructor(opts) {        super({            name: "ValidationException",            $fault: "client",            ...opts,        });        Object.setPrototypeOf(this, ValidationException.prototype);    }}exports.ValidationException = ValidationException;class ResourceNotFoundException extends KeyspacesServiceException_1.KeyspacesServiceException {    name = "ResourceNotFoundException";    $fault = "client";    resourceArn;    constructor(opts) {        super({            name: "ResourceNotFoundException",            $fault: "client",            ...opts,        });        Object.setPrototypeOf(this, ResourceNotFoundException.prototype);        this.resourceArn = opts.resourceArn;    }}exports.ResourceNotFoundException = ResourceNotFoundException;