File Explorer

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