File Explorer

/var/runtime/node_modules/@aws-sdk/client-location/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.8 KB · 116 lines
"use strict";Object.defineProperty(exports, "__esModule", { value: true });exports.ResourceNotFoundException = exports.ValidationException = exports.ThrottlingException = exports.ServiceQuotaExceededException = exports.InternalServerException = exports.ConflictException = exports.AccessDeniedException = void 0;const LocationServiceException_1 = require("./LocationServiceException");class AccessDeniedException extends LocationServiceException_1.LocationServiceException {    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 LocationServiceException_1.LocationServiceException {    name = "ConflictException";    $fault = "client";    Message;    constructor(opts) {        super({            name: "ConflictException",            $fault: "client",            ...opts,        });        Object.setPrototypeOf(this, ConflictException.prototype);        this.Message = opts.Message;    }}exports.ConflictException = ConflictException;class InternalServerException extends LocationServiceException_1.LocationServiceException {    name = "InternalServerException";    $fault = "server";    $retryable = {};    Message;    constructor(opts) {        super({            name: "InternalServerException",            $fault: "server",            ...opts,        });        Object.setPrototypeOf(this, InternalServerException.prototype);        this.Message = opts.Message;    }}exports.InternalServerException = InternalServerException;class ServiceQuotaExceededException extends LocationServiceException_1.LocationServiceException {    name = "ServiceQuotaExceededException";    $fault = "client";    Message;    constructor(opts) {        super({            name: "ServiceQuotaExceededException",            $fault: "client",            ...opts,        });        Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);        this.Message = opts.Message;    }}exports.ServiceQuotaExceededException = ServiceQuotaExceededException;class ThrottlingException extends LocationServiceException_1.LocationServiceException {    name = "ThrottlingException";    $fault = "client";    $retryable = {};    Message;    constructor(opts) {        super({            name: "ThrottlingException",            $fault: "client",            ...opts,        });        Object.setPrototypeOf(this, ThrottlingException.prototype);        this.Message = opts.Message;    }}exports.ThrottlingException = ThrottlingException;class ValidationException extends LocationServiceException_1.LocationServiceException {    name = "ValidationException";    $fault = "client";    Message;    Reason;    FieldList;    constructor(opts) {        super({            name: "ValidationException",            $fault: "client",            ...opts,        });        Object.setPrototypeOf(this, ValidationException.prototype);        this.Message = opts.Message;        this.Reason = opts.Reason;        this.FieldList = opts.FieldList;    }}exports.ValidationException = ValidationException;class ResourceNotFoundException extends LocationServiceException_1.LocationServiceException {    name = "ResourceNotFoundException";    $fault = "client";    Message;    constructor(opts) {        super({            name: "ResourceNotFoundException",            $fault: "client",            ...opts,        });        Object.setPrototypeOf(this, ResourceNotFoundException.prototype);        this.Message = opts.Message;    }}exports.ResourceNotFoundException = ResourceNotFoundException;