File Explorer

/proc/self/root/var/runtime/node_modules/@aws-sdk/client-dataexchange/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.2 KB · 124 lines
"use strict";Object.defineProperty(exports, "__esModule", { value: true });exports.ServiceLimitExceededException = exports.ValidationException = exports.ThrottlingException = exports.ResourceNotFoundException = exports.InternalServerException = exports.ConflictException = exports.AccessDeniedException = void 0;const DataExchangeServiceException_1 = require("./DataExchangeServiceException");class AccessDeniedException extends DataExchangeServiceException_1.DataExchangeServiceException {    name = "AccessDeniedException";    $fault = "client";    Message;    constructor(opts) {        super({            name: "AccessDeniedException",            $fault: "client",            ...opts,        });        Object.setPrototypeOf(this, AccessDeniedException.prototype);        this.Message = opts.Message;    }}exports.AccessDeniedException = AccessDeniedException;class ConflictException extends DataExchangeServiceException_1.DataExchangeServiceException {    name = "ConflictException";    $fault = "client";    Message;    ResourceId;    ResourceType;    constructor(opts) {        super({            name: "ConflictException",            $fault: "client",            ...opts,        });        Object.setPrototypeOf(this, ConflictException.prototype);        this.Message = opts.Message;        this.ResourceId = opts.ResourceId;        this.ResourceType = opts.ResourceType;    }}exports.ConflictException = ConflictException;class InternalServerException extends DataExchangeServiceException_1.DataExchangeServiceException {    name = "InternalServerException";    $fault = "server";    Message;    constructor(opts) {        super({            name: "InternalServerException",            $fault: "server",            ...opts,        });        Object.setPrototypeOf(this, InternalServerException.prototype);        this.Message = opts.Message;    }}exports.InternalServerException = InternalServerException;class ResourceNotFoundException extends DataExchangeServiceException_1.DataExchangeServiceException {    name = "ResourceNotFoundException";    $fault = "client";    Message;    ResourceId;    ResourceType;    constructor(opts) {        super({            name: "ResourceNotFoundException",            $fault: "client",            ...opts,        });        Object.setPrototypeOf(this, ResourceNotFoundException.prototype);        this.Message = opts.Message;        this.ResourceId = opts.ResourceId;        this.ResourceType = opts.ResourceType;    }}exports.ResourceNotFoundException = ResourceNotFoundException;class ThrottlingException extends DataExchangeServiceException_1.DataExchangeServiceException {    name = "ThrottlingException";    $fault = "client";    Message;    constructor(opts) {        super({            name: "ThrottlingException",            $fault: "client",            ...opts,        });        Object.setPrototypeOf(this, ThrottlingException.prototype);        this.Message = opts.Message;    }}exports.ThrottlingException = ThrottlingException;class ValidationException extends DataExchangeServiceException_1.DataExchangeServiceException {    name = "ValidationException";    $fault = "client";    Message;    ExceptionCause;    constructor(opts) {        super({            name: "ValidationException",            $fault: "client",            ...opts,        });        Object.setPrototypeOf(this, ValidationException.prototype);        this.Message = opts.Message;        this.ExceptionCause = opts.ExceptionCause;    }}exports.ValidationException = ValidationException;class ServiceLimitExceededException extends DataExchangeServiceException_1.DataExchangeServiceException {    name = "ServiceLimitExceededException";    $fault = "client";    LimitName;    LimitValue;    Message;    constructor(opts) {        super({            name: "ServiceLimitExceededException",            $fault: "client",            ...opts,        });        Object.setPrototypeOf(this, ServiceLimitExceededException.prototype);        this.LimitName = opts.LimitName;        this.LimitValue = opts.LimitValue;        this.Message = opts.Message;    }}exports.ServiceLimitExceededException = ServiceLimitExceededException;