File Explorer

/proc/self/root/var/runtime/node_modules/@aws-sdk/client-wisdom/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 · 114 lines
"use strict";Object.defineProperty(exports, "__esModule", { value: true });exports.TooManyTagsException = exports.PreconditionFailedException = exports.RequestTimeoutException = exports.ValidationException = exports.ServiceQuotaExceededException = exports.ResourceNotFoundException = exports.ConflictException = exports.AccessDeniedException = void 0;const WisdomServiceException_1 = require("./WisdomServiceException");class AccessDeniedException extends WisdomServiceException_1.WisdomServiceException {    name = "AccessDeniedException";    $fault = "client";    constructor(opts) {        super({            name: "AccessDeniedException",            $fault: "client",            ...opts,        });        Object.setPrototypeOf(this, AccessDeniedException.prototype);    }}exports.AccessDeniedException = AccessDeniedException;class ConflictException extends WisdomServiceException_1.WisdomServiceException {    name = "ConflictException";    $fault = "client";    constructor(opts) {        super({            name: "ConflictException",            $fault: "client",            ...opts,        });        Object.setPrototypeOf(this, ConflictException.prototype);    }}exports.ConflictException = ConflictException;class ResourceNotFoundException extends WisdomServiceException_1.WisdomServiceException {    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 ServiceQuotaExceededException extends WisdomServiceException_1.WisdomServiceException {    name = "ServiceQuotaExceededException";    $fault = "client";    constructor(opts) {        super({            name: "ServiceQuotaExceededException",            $fault: "client",            ...opts,        });        Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);    }}exports.ServiceQuotaExceededException = ServiceQuotaExceededException;class ValidationException extends WisdomServiceException_1.WisdomServiceException {    name = "ValidationException";    $fault = "client";    constructor(opts) {        super({            name: "ValidationException",            $fault: "client",            ...opts,        });        Object.setPrototypeOf(this, ValidationException.prototype);    }}exports.ValidationException = ValidationException;class RequestTimeoutException extends WisdomServiceException_1.WisdomServiceException {    name = "RequestTimeoutException";    $fault = "client";    $retryable = {};    constructor(opts) {        super({            name: "RequestTimeoutException",            $fault: "client",            ...opts,        });        Object.setPrototypeOf(this, RequestTimeoutException.prototype);    }}exports.RequestTimeoutException = RequestTimeoutException;class PreconditionFailedException extends WisdomServiceException_1.WisdomServiceException {    name = "PreconditionFailedException";    $fault = "client";    constructor(opts) {        super({            name: "PreconditionFailedException",            $fault: "client",            ...opts,        });        Object.setPrototypeOf(this, PreconditionFailedException.prototype);    }}exports.PreconditionFailedException = PreconditionFailedException;class TooManyTagsException extends WisdomServiceException_1.WisdomServiceException {    name = "TooManyTagsException";    $fault = "client";    resourceName;    constructor(opts) {        super({            name: "TooManyTagsException",            $fault: "client",            ...opts,        });        Object.setPrototypeOf(this, TooManyTagsException.prototype);        this.resourceName = opts.resourceName;    }}exports.TooManyTagsException = TooManyTagsException;