File Explorer

/proc/self/root/var/runtime/node_modules/@aws-sdk/client-s3tables/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.8 KB · 109 lines
"use strict";Object.defineProperty(exports, "__esModule", { value: true });exports.MethodNotAllowedException = exports.TooManyRequestsException = exports.NotFoundException = exports.InternalServerErrorException = exports.ForbiddenException = exports.ConflictException = exports.BadRequestException = exports.AccessDeniedException = void 0;const S3TablesServiceException_1 = require("./S3TablesServiceException");class AccessDeniedException extends S3TablesServiceException_1.S3TablesServiceException {    name = "AccessDeniedException";    $fault = "client";    constructor(opts) {        super({            name: "AccessDeniedException",            $fault: "client",            ...opts,        });        Object.setPrototypeOf(this, AccessDeniedException.prototype);    }}exports.AccessDeniedException = AccessDeniedException;class BadRequestException extends S3TablesServiceException_1.S3TablesServiceException {    name = "BadRequestException";    $fault = "client";    constructor(opts) {        super({            name: "BadRequestException",            $fault: "client",            ...opts,        });        Object.setPrototypeOf(this, BadRequestException.prototype);    }}exports.BadRequestException = BadRequestException;class ConflictException extends S3TablesServiceException_1.S3TablesServiceException {    name = "ConflictException";    $fault = "client";    constructor(opts) {        super({            name: "ConflictException",            $fault: "client",            ...opts,        });        Object.setPrototypeOf(this, ConflictException.prototype);    }}exports.ConflictException = ConflictException;class ForbiddenException extends S3TablesServiceException_1.S3TablesServiceException {    name = "ForbiddenException";    $fault = "client";    constructor(opts) {        super({            name: "ForbiddenException",            $fault: "client",            ...opts,        });        Object.setPrototypeOf(this, ForbiddenException.prototype);    }}exports.ForbiddenException = ForbiddenException;class InternalServerErrorException extends S3TablesServiceException_1.S3TablesServiceException {    name = "InternalServerErrorException";    $fault = "server";    constructor(opts) {        super({            name: "InternalServerErrorException",            $fault: "server",            ...opts,        });        Object.setPrototypeOf(this, InternalServerErrorException.prototype);    }}exports.InternalServerErrorException = InternalServerErrorException;class NotFoundException extends S3TablesServiceException_1.S3TablesServiceException {    name = "NotFoundException";    $fault = "client";    constructor(opts) {        super({            name: "NotFoundException",            $fault: "client",            ...opts,        });        Object.setPrototypeOf(this, NotFoundException.prototype);    }}exports.NotFoundException = NotFoundException;class TooManyRequestsException extends S3TablesServiceException_1.S3TablesServiceException {    name = "TooManyRequestsException";    $fault = "client";    constructor(opts) {        super({            name: "TooManyRequestsException",            $fault: "client",            ...opts,        });        Object.setPrototypeOf(this, TooManyRequestsException.prototype);    }}exports.TooManyRequestsException = TooManyRequestsException;class MethodNotAllowedException extends S3TablesServiceException_1.S3TablesServiceException {    name = "MethodNotAllowedException";    $fault = "client";    constructor(opts) {        super({            name: "MethodNotAllowedException",            $fault: "client",            ...opts,        });        Object.setPrototypeOf(this, MethodNotAllowedException.prototype);    }}exports.MethodNotAllowedException = MethodNotAllowedException;