File Explorer

/proc/self/root/var/runtime/node_modules/@aws-sdk/client-omics/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.8 KB · 140 lines
"use strict";Object.defineProperty(exports, "__esModule", { value: true });exports.RangeNotSatisfiableException = exports.ConflictException = exports.ValidationException = exports.ThrottlingException = exports.ServiceQuotaExceededException = exports.ResourceNotFoundException = exports.RequestTimeoutException = exports.NotSupportedOperationException = exports.InternalServerException = exports.AccessDeniedException = void 0;const OmicsServiceException_1 = require("./OmicsServiceException");class AccessDeniedException extends OmicsServiceException_1.OmicsServiceException {    name = "AccessDeniedException";    $fault = "client";    constructor(opts) {        super({            name: "AccessDeniedException",            $fault: "client",            ...opts,        });        Object.setPrototypeOf(this, AccessDeniedException.prototype);    }}exports.AccessDeniedException = AccessDeniedException;class InternalServerException extends OmicsServiceException_1.OmicsServiceException {    name = "InternalServerException";    $fault = "server";    $retryable = {};    constructor(opts) {        super({            name: "InternalServerException",            $fault: "server",            ...opts,        });        Object.setPrototypeOf(this, InternalServerException.prototype);    }}exports.InternalServerException = InternalServerException;class NotSupportedOperationException extends OmicsServiceException_1.OmicsServiceException {    name = "NotSupportedOperationException";    $fault = "client";    constructor(opts) {        super({            name: "NotSupportedOperationException",            $fault: "client",            ...opts,        });        Object.setPrototypeOf(this, NotSupportedOperationException.prototype);    }}exports.NotSupportedOperationException = NotSupportedOperationException;class RequestTimeoutException extends OmicsServiceException_1.OmicsServiceException {    name = "RequestTimeoutException";    $fault = "client";    constructor(opts) {        super({            name: "RequestTimeoutException",            $fault: "client",            ...opts,        });        Object.setPrototypeOf(this, RequestTimeoutException.prototype);    }}exports.RequestTimeoutException = RequestTimeoutException;class ResourceNotFoundException extends OmicsServiceException_1.OmicsServiceException {    name = "ResourceNotFoundException";    $fault = "client";    constructor(opts) {        super({            name: "ResourceNotFoundException",            $fault: "client",            ...opts,        });        Object.setPrototypeOf(this, ResourceNotFoundException.prototype);    }}exports.ResourceNotFoundException = ResourceNotFoundException;class ServiceQuotaExceededException extends OmicsServiceException_1.OmicsServiceException {    name = "ServiceQuotaExceededException";    $fault = "client";    constructor(opts) {        super({            name: "ServiceQuotaExceededException",            $fault: "client",            ...opts,        });        Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);    }}exports.ServiceQuotaExceededException = ServiceQuotaExceededException;class ThrottlingException extends OmicsServiceException_1.OmicsServiceException {    name = "ThrottlingException";    $fault = "client";    $retryable = {        throttling: true,    };    constructor(opts) {        super({            name: "ThrottlingException",            $fault: "client",            ...opts,        });        Object.setPrototypeOf(this, ThrottlingException.prototype);    }}exports.ThrottlingException = ThrottlingException;class ValidationException extends OmicsServiceException_1.OmicsServiceException {    name = "ValidationException";    $fault = "client";    constructor(opts) {        super({            name: "ValidationException",            $fault: "client",            ...opts,        });        Object.setPrototypeOf(this, ValidationException.prototype);    }}exports.ValidationException = ValidationException;class ConflictException extends OmicsServiceException_1.OmicsServiceException {    name = "ConflictException";    $fault = "client";    constructor(opts) {        super({            name: "ConflictException",            $fault: "client",            ...opts,        });        Object.setPrototypeOf(this, ConflictException.prototype);    }}exports.ConflictException = ConflictException;class RangeNotSatisfiableException extends OmicsServiceException_1.OmicsServiceException {    name = "RangeNotSatisfiableException";    $fault = "client";    $retryable = {};    constructor(opts) {        super({            name: "RangeNotSatisfiableException",            $fault: "client",            ...opts,        });        Object.setPrototypeOf(this, RangeNotSatisfiableException.prototype);    }}exports.RangeNotSatisfiableException = RangeNotSatisfiableException;