File Explorer

/proc/self/root/var/runtime/node_modules/@aws-sdk/client-ivschat/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.4 KB · 133 lines
"use strict";Object.defineProperty(exports, "__esModule", { value: true });exports.InternalServerException = exports.ThrottlingException = exports.ServiceQuotaExceededException = exports.ConflictException = exports.ValidationException = exports.ResourceNotFoundException = exports.PendingVerification = exports.AccessDeniedException = void 0;const IvschatServiceException_1 = require("./IvschatServiceException");class AccessDeniedException extends IvschatServiceException_1.IvschatServiceException {    name = "AccessDeniedException";    $fault = "client";    constructor(opts) {        super({            name: "AccessDeniedException",            $fault: "client",            ...opts,        });        Object.setPrototypeOf(this, AccessDeniedException.prototype);    }}exports.AccessDeniedException = AccessDeniedException;class PendingVerification extends IvschatServiceException_1.IvschatServiceException {    name = "PendingVerification";    $fault = "client";    constructor(opts) {        super({            name: "PendingVerification",            $fault: "client",            ...opts,        });        Object.setPrototypeOf(this, PendingVerification.prototype);    }}exports.PendingVerification = PendingVerification;class ResourceNotFoundException extends IvschatServiceException_1.IvschatServiceException {    name = "ResourceNotFoundException";    $fault = "client";    resourceId;    resourceType;    constructor(opts) {        super({            name: "ResourceNotFoundException",            $fault: "client",            ...opts,        });        Object.setPrototypeOf(this, ResourceNotFoundException.prototype);        this.resourceId = opts.resourceId;        this.resourceType = opts.resourceType;    }}exports.ResourceNotFoundException = ResourceNotFoundException;class ValidationException extends IvschatServiceException_1.IvschatServiceException {    name = "ValidationException";    $fault = "client";    reason;    fieldList;    constructor(opts) {        super({            name: "ValidationException",            $fault: "client",            ...opts,        });        Object.setPrototypeOf(this, ValidationException.prototype);        this.reason = opts.reason;        this.fieldList = opts.fieldList;    }}exports.ValidationException = ValidationException;class ConflictException extends IvschatServiceException_1.IvschatServiceException {    name = "ConflictException";    $fault = "client";    resourceId;    resourceType;    constructor(opts) {        super({            name: "ConflictException",            $fault: "client",            ...opts,        });        Object.setPrototypeOf(this, ConflictException.prototype);        this.resourceId = opts.resourceId;        this.resourceType = opts.resourceType;    }}exports.ConflictException = ConflictException;class ServiceQuotaExceededException extends IvschatServiceException_1.IvschatServiceException {    name = "ServiceQuotaExceededException";    $fault = "client";    resourceId;    resourceType;    limit;    constructor(opts) {        super({            name: "ServiceQuotaExceededException",            $fault: "client",            ...opts,        });        Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);        this.resourceId = opts.resourceId;        this.resourceType = opts.resourceType;        this.limit = opts.limit;    }}exports.ServiceQuotaExceededException = ServiceQuotaExceededException;class ThrottlingException extends IvschatServiceException_1.IvschatServiceException {    name = "ThrottlingException";    $fault = "client";    resourceId;    resourceType;    limit;    constructor(opts) {        super({            name: "ThrottlingException",            $fault: "client",            ...opts,        });        Object.setPrototypeOf(this, ThrottlingException.prototype);        this.resourceId = opts.resourceId;        this.resourceType = opts.resourceType;        this.limit = opts.limit;    }}exports.ThrottlingException = ThrottlingException;class InternalServerException extends IvschatServiceException_1.IvschatServiceException {    name = "InternalServerException";    $fault = "server";    constructor(opts) {        super({            name: "InternalServerException",            $fault: "server",            ...opts,        });        Object.setPrototypeOf(this, InternalServerException.prototype);    }}exports.InternalServerException = InternalServerException;