File Explorer

/proc/self/root/var/runtime/node_modules/@aws-sdk/client-cloudhsm/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.js1.7 KB · 50 lines
"use strict";Object.defineProperty(exports, "__esModule", { value: true });exports.InvalidRequestException = exports.CloudHsmServiceException = exports.CloudHsmInternalException = void 0;const CloudHSMServiceException_1 = require("./CloudHSMServiceException");class CloudHsmInternalException extends CloudHSMServiceException_1.CloudHSMServiceException {    name = "CloudHsmInternalException";    $fault = "server";    retryable;    constructor(opts) {        super({            name: "CloudHsmInternalException",            $fault: "server",            ...opts,        });        Object.setPrototypeOf(this, CloudHsmInternalException.prototype);        this.retryable = opts.retryable;    }}exports.CloudHsmInternalException = CloudHsmInternalException;class CloudHsmServiceException extends CloudHSMServiceException_1.CloudHSMServiceException {    name = "CloudHsmServiceException";    $fault = "client";    retryable;    constructor(opts) {        super({            name: "CloudHsmServiceException",            $fault: "client",            ...opts,        });        Object.setPrototypeOf(this, CloudHsmServiceException.prototype);        this.retryable = opts.retryable;    }}exports.CloudHsmServiceException = CloudHsmServiceException;class InvalidRequestException extends CloudHSMServiceException_1.CloudHSMServiceException {    name = "InvalidRequestException";    $fault = "client";    retryable;    constructor(opts) {        super({            name: "InvalidRequestException",            $fault: "client",            ...opts,        });        Object.setPrototypeOf(this, InvalidRequestException.prototype);        this.retryable = opts.retryable;    }}exports.InvalidRequestException = InvalidRequestException;