UNPKG

@eddye68/studio-client

Version:

The AWS service Studio client

15 lines 261 B
// src/http-client/http-error.ts var HttpError = class extends Error { /** * * @param {string} message */ constructor(message) { super(message); this.name = "HttpError"; } }; export { HttpError }; //# sourceMappingURL=http-error.mjs.map