File Explorer

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