File Explorer

/proc/self/root/var/runtime/node_modules/@aws-sdk/client-panorama/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.1 KB · 125 lines
"use strict";Object.defineProperty(exports, "__esModule", { value: true });exports.ResourceNotFoundException = exports.ValidationException = exports.ServiceQuotaExceededException = exports.InternalServerException = exports.ConflictException = exports.AccessDeniedException = void 0;const PanoramaServiceException_1 = require("./PanoramaServiceException");class AccessDeniedException extends PanoramaServiceException_1.PanoramaServiceException {    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 PanoramaServiceException_1.PanoramaServiceException {    name = "ConflictException";    $fault = "client";    Message;    ResourceId;    ResourceType;    ErrorId;    ErrorArguments;    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;        this.ErrorId = opts.ErrorId;        this.ErrorArguments = opts.ErrorArguments;    }}exports.ConflictException = ConflictException;class InternalServerException extends PanoramaServiceException_1.PanoramaServiceException {    name = "InternalServerException";    $fault = "server";    Message;    RetryAfterSeconds;    constructor(opts) {        super({            name: "InternalServerException",            $fault: "server",            ...opts,        });        Object.setPrototypeOf(this, InternalServerException.prototype);        this.Message = opts.Message;        this.RetryAfterSeconds = opts.RetryAfterSeconds;    }}exports.InternalServerException = InternalServerException;class ServiceQuotaExceededException extends PanoramaServiceException_1.PanoramaServiceException {    name = "ServiceQuotaExceededException";    $fault = "client";    Message;    ResourceId;    ResourceType;    QuotaCode;    ServiceCode;    constructor(opts) {        super({            name: "ServiceQuotaExceededException",            $fault: "client",            ...opts,        });        Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);        this.Message = opts.Message;        this.ResourceId = opts.ResourceId;        this.ResourceType = opts.ResourceType;        this.QuotaCode = opts.QuotaCode;        this.ServiceCode = opts.ServiceCode;    }}exports.ServiceQuotaExceededException = ServiceQuotaExceededException;class ValidationException extends PanoramaServiceException_1.PanoramaServiceException {    name = "ValidationException";    $fault = "client";    Message;    Reason;    ErrorId;    ErrorArguments;    Fields;    constructor(opts) {        super({            name: "ValidationException",            $fault: "client",            ...opts,        });        Object.setPrototypeOf(this, ValidationException.prototype);        this.Message = opts.Message;        this.Reason = opts.Reason;        this.ErrorId = opts.ErrorId;        this.ErrorArguments = opts.ErrorArguments;        this.Fields = opts.Fields;    }}exports.ValidationException = ValidationException;class ResourceNotFoundException extends PanoramaServiceException_1.PanoramaServiceException {    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;