File Explorer

/proc/self/root/var/runtime/node_modules/@aws-sdk/client-cloudsearch/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.js4.5 KB · 141 lines
"use strict";Object.defineProperty(exports, "__esModule", { value: true });exports.DisabledOperationException = exports.InvalidTypeException = exports.ResourceAlreadyExistsException = exports.LimitExceededException = exports.ValidationException = exports.ResourceNotFoundException = exports.InternalException = exports.BaseException = void 0;const CloudSearchServiceException_1 = require("./CloudSearchServiceException");class BaseException extends CloudSearchServiceException_1.CloudSearchServiceException {    name = "BaseException";    $fault = "client";    Code;    Message;    constructor(opts) {        super({            name: "BaseException",            $fault: "client",            ...opts,        });        Object.setPrototypeOf(this, BaseException.prototype);        this.Code = opts.Code;        this.Message = opts.Message;    }}exports.BaseException = BaseException;class InternalException extends CloudSearchServiceException_1.CloudSearchServiceException {    name = "InternalException";    $fault = "server";    Code;    Message;    constructor(opts) {        super({            name: "InternalException",            $fault: "server",            ...opts,        });        Object.setPrototypeOf(this, InternalException.prototype);        this.Code = opts.Code;        this.Message = opts.Message;    }}exports.InternalException = InternalException;class ResourceNotFoundException extends CloudSearchServiceException_1.CloudSearchServiceException {    name = "ResourceNotFoundException";    $fault = "client";    Code;    Message;    constructor(opts) {        super({            name: "ResourceNotFoundException",            $fault: "client",            ...opts,        });        Object.setPrototypeOf(this, ResourceNotFoundException.prototype);        this.Code = opts.Code;        this.Message = opts.Message;    }}exports.ResourceNotFoundException = ResourceNotFoundException;class ValidationException extends CloudSearchServiceException_1.CloudSearchServiceException {    name = "ValidationException";    $fault = "client";    Code;    Message;    constructor(opts) {        super({            name: "ValidationException",            $fault: "client",            ...opts,        });        Object.setPrototypeOf(this, ValidationException.prototype);        this.Code = opts.Code;        this.Message = opts.Message;    }}exports.ValidationException = ValidationException;class LimitExceededException extends CloudSearchServiceException_1.CloudSearchServiceException {    name = "LimitExceededException";    $fault = "client";    Code;    Message;    constructor(opts) {        super({            name: "LimitExceededException",            $fault: "client",            ...opts,        });        Object.setPrototypeOf(this, LimitExceededException.prototype);        this.Code = opts.Code;        this.Message = opts.Message;    }}exports.LimitExceededException = LimitExceededException;class ResourceAlreadyExistsException extends CloudSearchServiceException_1.CloudSearchServiceException {    name = "ResourceAlreadyExistsException";    $fault = "client";    Code;    Message;    constructor(opts) {        super({            name: "ResourceAlreadyExistsException",            $fault: "client",            ...opts,        });        Object.setPrototypeOf(this, ResourceAlreadyExistsException.prototype);        this.Code = opts.Code;        this.Message = opts.Message;    }}exports.ResourceAlreadyExistsException = ResourceAlreadyExistsException;class InvalidTypeException extends CloudSearchServiceException_1.CloudSearchServiceException {    name = "InvalidTypeException";    $fault = "client";    Code;    Message;    constructor(opts) {        super({            name: "InvalidTypeException",            $fault: "client",            ...opts,        });        Object.setPrototypeOf(this, InvalidTypeException.prototype);        this.Code = opts.Code;        this.Message = opts.Message;    }}exports.InvalidTypeException = InvalidTypeException;class DisabledOperationException extends CloudSearchServiceException_1.CloudSearchServiceException {    name = "DisabledOperationException";    $fault = "client";    Code;    Message;    constructor(opts) {        super({            name: "DisabledOperationException",            $fault: "client",            ...opts,        });        Object.setPrototypeOf(this, DisabledOperationException.prototype);        this.Code = opts.Code;        this.Message = opts.Message;    }}exports.DisabledOperationException = DisabledOperationException;