michangarrito/apps/backend/node_modules/webpack/lib/serialization/ErrorObjectSerializer.js
rckrdmrd 48dea7a5d0 feat: Initial commit - michangarrito
Marketplace móvil para negocios locales mexicanos.

Estructura inicial:
- apps/backend (NestJS API)
- apps/frontend (React Web)
- apps/mobile (Expo/React Native)
- apps/mcp-server (Claude MCP Server)
- apps/whatsapp-service (WhatsApp Business API)
- database/ (PostgreSQL DDL)
- docs/ (Documentación)

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-07 04:41:02 -06:00

50 lines
1.3 KiB
JavaScript

/*
MIT License http://www.opensource.org/licenses/mit-license.php
*/
"use strict";
/** @typedef {import("./ObjectMiddleware").ObjectDeserializerContext} ObjectDeserializerContext */
/** @typedef {import("./ObjectMiddleware").ObjectSerializerContext} ObjectSerializerContext */
/** @typedef {Error & { cause?: unknown }} ErrorWithCause */
class ErrorObjectSerializer {
/**
* @param {ErrorConstructor | EvalErrorConstructor | RangeErrorConstructor | ReferenceErrorConstructor | SyntaxErrorConstructor | TypeErrorConstructor} Type error type
*/
constructor(Type) {
this.Type = Type;
}
/**
* @param {Error | EvalError | RangeError | ReferenceError | SyntaxError | TypeError} obj error
* @param {ObjectSerializerContext} context context
*/
serialize(obj, context) {
context.write(obj.message);
context.write(obj.stack);
context.write(
/** @type {ErrorWithCause} */
(obj).cause
);
}
/**
* @param {ObjectDeserializerContext} context context
* @returns {Error | EvalError | RangeError | ReferenceError | SyntaxError | TypeError} error
*/
deserialize(context) {
const err = new this.Type();
err.message = context.read();
err.stack = context.read();
/** @type {ErrorWithCause} */
(err).cause = context.read();
return err;
}
}
module.exports = ErrorObjectSerializer;