File Explorer

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