File Explorer

/proc/self/root/var/runtime/node_modules/@aws-sdk/client-firehose/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.0 KB · 113 lines
"use strict";Object.defineProperty(exports, "__esModule", { value: true });exports.ServiceUnavailableException = exports.InvalidSourceException = exports.ResourceNotFoundException = exports.ResourceInUseException = exports.LimitExceededException = exports.InvalidKMSResourceException = exports.InvalidArgumentException = exports.ConcurrentModificationException = void 0;const FirehoseServiceException_1 = require("./FirehoseServiceException");class ConcurrentModificationException extends FirehoseServiceException_1.FirehoseServiceException {    name = "ConcurrentModificationException";    $fault = "client";    constructor(opts) {        super({            name: "ConcurrentModificationException",            $fault: "client",            ...opts,        });        Object.setPrototypeOf(this, ConcurrentModificationException.prototype);    }}exports.ConcurrentModificationException = ConcurrentModificationException;class InvalidArgumentException extends FirehoseServiceException_1.FirehoseServiceException {    name = "InvalidArgumentException";    $fault = "client";    constructor(opts) {        super({            name: "InvalidArgumentException",            $fault: "client",            ...opts,        });        Object.setPrototypeOf(this, InvalidArgumentException.prototype);    }}exports.InvalidArgumentException = InvalidArgumentException;class InvalidKMSResourceException extends FirehoseServiceException_1.FirehoseServiceException {    name = "InvalidKMSResourceException";    $fault = "client";    code;    constructor(opts) {        super({            name: "InvalidKMSResourceException",            $fault: "client",            ...opts,        });        Object.setPrototypeOf(this, InvalidKMSResourceException.prototype);        this.code = opts.code;    }}exports.InvalidKMSResourceException = InvalidKMSResourceException;class LimitExceededException extends FirehoseServiceException_1.FirehoseServiceException {    name = "LimitExceededException";    $fault = "client";    constructor(opts) {        super({            name: "LimitExceededException",            $fault: "client",            ...opts,        });        Object.setPrototypeOf(this, LimitExceededException.prototype);    }}exports.LimitExceededException = LimitExceededException;class ResourceInUseException extends FirehoseServiceException_1.FirehoseServiceException {    name = "ResourceInUseException";    $fault = "client";    constructor(opts) {        super({            name: "ResourceInUseException",            $fault: "client",            ...opts,        });        Object.setPrototypeOf(this, ResourceInUseException.prototype);    }}exports.ResourceInUseException = ResourceInUseException;class ResourceNotFoundException extends FirehoseServiceException_1.FirehoseServiceException {    name = "ResourceNotFoundException";    $fault = "client";    constructor(opts) {        super({            name: "ResourceNotFoundException",            $fault: "client",            ...opts,        });        Object.setPrototypeOf(this, ResourceNotFoundException.prototype);    }}exports.ResourceNotFoundException = ResourceNotFoundException;class InvalidSourceException extends FirehoseServiceException_1.FirehoseServiceException {    name = "InvalidSourceException";    $fault = "client";    code;    constructor(opts) {        super({            name: "InvalidSourceException",            $fault: "client",            ...opts,        });        Object.setPrototypeOf(this, InvalidSourceException.prototype);        this.code = opts.code;    }}exports.InvalidSourceException = InvalidSourceException;class ServiceUnavailableException extends FirehoseServiceException_1.FirehoseServiceException {    name = "ServiceUnavailableException";    $fault = "server";    constructor(opts) {        super({            name: "ServiceUnavailableException",            $fault: "server",            ...opts,        });        Object.setPrototypeOf(this, ServiceUnavailableException.prototype);    }}exports.ServiceUnavailableException = ServiceUnavailableException;