File Explorer

/var/runtime/node_modules/@aws-sdk/client-iotthingsgraph/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.5 KB · 96 lines
"use strict";Object.defineProperty(exports, "__esModule", { value: true });exports.ResourceInUseException = exports.ResourceAlreadyExistsException = exports.LimitExceededException = exports.ThrottlingException = exports.ResourceNotFoundException = exports.InvalidRequestException = exports.InternalFailureException = void 0;const IoTThingsGraphServiceException_1 = require("./IoTThingsGraphServiceException");class InternalFailureException extends IoTThingsGraphServiceException_1.IoTThingsGraphServiceException {    name = "InternalFailureException";    $fault = "server";    constructor(opts) {        super({            name: "InternalFailureException",            $fault: "server",            ...opts,        });        Object.setPrototypeOf(this, InternalFailureException.prototype);    }}exports.InternalFailureException = InternalFailureException;class InvalidRequestException extends IoTThingsGraphServiceException_1.IoTThingsGraphServiceException {    name = "InvalidRequestException";    $fault = "client";    constructor(opts) {        super({            name: "InvalidRequestException",            $fault: "client",            ...opts,        });        Object.setPrototypeOf(this, InvalidRequestException.prototype);    }}exports.InvalidRequestException = InvalidRequestException;class ResourceNotFoundException extends IoTThingsGraphServiceException_1.IoTThingsGraphServiceException {    name = "ResourceNotFoundException";    $fault = "client";    constructor(opts) {        super({            name: "ResourceNotFoundException",            $fault: "client",            ...opts,        });        Object.setPrototypeOf(this, ResourceNotFoundException.prototype);    }}exports.ResourceNotFoundException = ResourceNotFoundException;class ThrottlingException extends IoTThingsGraphServiceException_1.IoTThingsGraphServiceException {    name = "ThrottlingException";    $fault = "client";    constructor(opts) {        super({            name: "ThrottlingException",            $fault: "client",            ...opts,        });        Object.setPrototypeOf(this, ThrottlingException.prototype);    }}exports.ThrottlingException = ThrottlingException;class LimitExceededException extends IoTThingsGraphServiceException_1.IoTThingsGraphServiceException {    name = "LimitExceededException";    $fault = "client";    constructor(opts) {        super({            name: "LimitExceededException",            $fault: "client",            ...opts,        });        Object.setPrototypeOf(this, LimitExceededException.prototype);    }}exports.LimitExceededException = LimitExceededException;class ResourceAlreadyExistsException extends IoTThingsGraphServiceException_1.IoTThingsGraphServiceException {    name = "ResourceAlreadyExistsException";    $fault = "client";    constructor(opts) {        super({            name: "ResourceAlreadyExistsException",            $fault: "client",            ...opts,        });        Object.setPrototypeOf(this, ResourceAlreadyExistsException.prototype);    }}exports.ResourceAlreadyExistsException = ResourceAlreadyExistsException;class ResourceInUseException extends IoTThingsGraphServiceException_1.IoTThingsGraphServiceException {    name = "ResourceInUseException";    $fault = "client";    constructor(opts) {        super({            name: "ResourceInUseException",            $fault: "client",            ...opts,        });        Object.setPrototypeOf(this, ResourceInUseException.prototype);    }}exports.ResourceInUseException = ResourceInUseException;