File Explorer

/proc/self/root/var/runtime/node_modules/@aws-sdk/client-s3outposts/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.7 KB · 110 lines
"use strict";Object.defineProperty(exports, "__esModule", { value: true });exports.ValidationException = exports.ThrottlingException = exports.ResourceNotFoundException = exports.OutpostOfflineException = exports.InternalServerException = exports.ConflictException = exports.AccessDeniedException = void 0;const S3OutpostsServiceException_1 = require("./S3OutpostsServiceException");class AccessDeniedException extends S3OutpostsServiceException_1.S3OutpostsServiceException {    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 S3OutpostsServiceException_1.S3OutpostsServiceException {    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 S3OutpostsServiceException_1.S3OutpostsServiceException {    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 OutpostOfflineException extends S3OutpostsServiceException_1.S3OutpostsServiceException {    name = "OutpostOfflineException";    $fault = "client";    Message;    constructor(opts) {        super({            name: "OutpostOfflineException",            $fault: "client",            ...opts,        });        Object.setPrototypeOf(this, OutpostOfflineException.prototype);        this.Message = opts.Message;    }}exports.OutpostOfflineException = OutpostOfflineException;class ResourceNotFoundException extends S3OutpostsServiceException_1.S3OutpostsServiceException {    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;class ThrottlingException extends S3OutpostsServiceException_1.S3OutpostsServiceException {    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 S3OutpostsServiceException_1.S3OutpostsServiceException {    name = "ValidationException";    $fault = "client";    Message;    constructor(opts) {        super({            name: "ValidationException",            $fault: "client",            ...opts,        });        Object.setPrototypeOf(this, ValidationException.prototype);        this.Message = opts.Message;    }}exports.ValidationException = ValidationException;