File Explorer

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