File Explorer

/proc/self/root/var/runtime/node_modules/@aws-sdk/client-amplifyuibuilder/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.6 KB · 96 lines
"use strict";Object.defineProperty(exports, "__esModule", { value: true });exports.UnauthorizedException = exports.ServiceQuotaExceededException = exports.ResourceConflictException = exports.ThrottlingException = exports.ResourceNotFoundException = exports.InvalidParameterException = exports.InternalServerException = void 0;const AmplifyUIBuilderServiceException_1 = require("./AmplifyUIBuilderServiceException");class InternalServerException extends AmplifyUIBuilderServiceException_1.AmplifyUIBuilderServiceException {    name = "InternalServerException";    $fault = "server";    constructor(opts) {        super({            name: "InternalServerException",            $fault: "server",            ...opts,        });        Object.setPrototypeOf(this, InternalServerException.prototype);    }}exports.InternalServerException = InternalServerException;class InvalidParameterException extends AmplifyUIBuilderServiceException_1.AmplifyUIBuilderServiceException {    name = "InvalidParameterException";    $fault = "client";    constructor(opts) {        super({            name: "InvalidParameterException",            $fault: "client",            ...opts,        });        Object.setPrototypeOf(this, InvalidParameterException.prototype);    }}exports.InvalidParameterException = InvalidParameterException;class ResourceNotFoundException extends AmplifyUIBuilderServiceException_1.AmplifyUIBuilderServiceException {    name = "ResourceNotFoundException";    $fault = "client";    constructor(opts) {        super({            name: "ResourceNotFoundException",            $fault: "client",            ...opts,        });        Object.setPrototypeOf(this, ResourceNotFoundException.prototype);    }}exports.ResourceNotFoundException = ResourceNotFoundException;class ThrottlingException extends AmplifyUIBuilderServiceException_1.AmplifyUIBuilderServiceException {    name = "ThrottlingException";    $fault = "client";    constructor(opts) {        super({            name: "ThrottlingException",            $fault: "client",            ...opts,        });        Object.setPrototypeOf(this, ThrottlingException.prototype);    }}exports.ThrottlingException = ThrottlingException;class ResourceConflictException extends AmplifyUIBuilderServiceException_1.AmplifyUIBuilderServiceException {    name = "ResourceConflictException";    $fault = "client";    constructor(opts) {        super({            name: "ResourceConflictException",            $fault: "client",            ...opts,        });        Object.setPrototypeOf(this, ResourceConflictException.prototype);    }}exports.ResourceConflictException = ResourceConflictException;class ServiceQuotaExceededException extends AmplifyUIBuilderServiceException_1.AmplifyUIBuilderServiceException {    name = "ServiceQuotaExceededException";    $fault = "client";    constructor(opts) {        super({            name: "ServiceQuotaExceededException",            $fault: "client",            ...opts,        });        Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);    }}exports.ServiceQuotaExceededException = ServiceQuotaExceededException;class UnauthorizedException extends AmplifyUIBuilderServiceException_1.AmplifyUIBuilderServiceException {    name = "UnauthorizedException";    $fault = "client";    constructor(opts) {        super({            name: "UnauthorizedException",            $fault: "client",            ...opts,        });        Object.setPrototypeOf(this, UnauthorizedException.prototype);    }}exports.UnauthorizedException = UnauthorizedException;