File Explorer

/proc/self/root/var/runtime/node_modules/@aws-sdk/client-aiops/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.0 KB · 117 lines
"use strict";Object.defineProperty(exports, "__esModule", { value: true });exports.ValidationException = exports.ThrottlingException = exports.ServiceQuotaExceededException = exports.ResourceNotFoundException = exports.InternalServerException = exports.ForbiddenException = exports.ConflictException = exports.AccessDeniedException = void 0;const AIOpsServiceException_1 = require("./AIOpsServiceException");class AccessDeniedException extends AIOpsServiceException_1.AIOpsServiceException {    name = "AccessDeniedException";    $fault = "client";    constructor(opts) {        super({            name: "AccessDeniedException",            $fault: "client",            ...opts,        });        Object.setPrototypeOf(this, AccessDeniedException.prototype);    }}exports.AccessDeniedException = AccessDeniedException;class ConflictException extends AIOpsServiceException_1.AIOpsServiceException {    name = "ConflictException";    $fault = "client";    constructor(opts) {        super({            name: "ConflictException",            $fault: "client",            ...opts,        });        Object.setPrototypeOf(this, ConflictException.prototype);    }}exports.ConflictException = ConflictException;class ForbiddenException extends AIOpsServiceException_1.AIOpsServiceException {    name = "ForbiddenException";    $fault = "client";    constructor(opts) {        super({            name: "ForbiddenException",            $fault: "client",            ...opts,        });        Object.setPrototypeOf(this, ForbiddenException.prototype);    }}exports.ForbiddenException = ForbiddenException;class InternalServerException extends AIOpsServiceException_1.AIOpsServiceException {    name = "InternalServerException";    $fault = "server";    constructor(opts) {        super({            name: "InternalServerException",            $fault: "server",            ...opts,        });        Object.setPrototypeOf(this, InternalServerException.prototype);    }}exports.InternalServerException = InternalServerException;class ResourceNotFoundException extends AIOpsServiceException_1.AIOpsServiceException {    name = "ResourceNotFoundException";    $fault = "client";    constructor(opts) {        super({            name: "ResourceNotFoundException",            $fault: "client",            ...opts,        });        Object.setPrototypeOf(this, ResourceNotFoundException.prototype);    }}exports.ResourceNotFoundException = ResourceNotFoundException;class ServiceQuotaExceededException extends AIOpsServiceException_1.AIOpsServiceException {    name = "ServiceQuotaExceededException";    $fault = "client";    resourceId;    resourceType;    serviceCode;    quotaCode;    constructor(opts) {        super({            name: "ServiceQuotaExceededException",            $fault: "client",            ...opts,        });        Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);        this.resourceId = opts.resourceId;        this.resourceType = opts.resourceType;        this.serviceCode = opts.serviceCode;        this.quotaCode = opts.quotaCode;    }}exports.ServiceQuotaExceededException = ServiceQuotaExceededException;class ThrottlingException extends AIOpsServiceException_1.AIOpsServiceException {    name = "ThrottlingException";    $fault = "client";    constructor(opts) {        super({            name: "ThrottlingException",            $fault: "client",            ...opts,        });        Object.setPrototypeOf(this, ThrottlingException.prototype);    }}exports.ThrottlingException = ThrottlingException;class ValidationException extends AIOpsServiceException_1.AIOpsServiceException {    name = "ValidationException";    $fault = "client";    constructor(opts) {        super({            name: "ValidationException",            $fault: "client",            ...opts,        });        Object.setPrototypeOf(this, ValidationException.prototype);    }}exports.ValidationException = ValidationException;