pip-services3-commons-nodex
Version:
Portable abstractions and patterns for Pip.Services in Node.js / ES2017
17 lines • 623 B
JavaScript
;
/** @module errors */
Object.defineProperty(exports, "__esModule", { value: true });
exports.ErrorDescription = void 0;
/**
* Serializeable error description. It is use to pass information about errors
* between microservices implemented in different languages. On the receiving side
* [[ErrorDescription]] is used to recreate exception object close to its original type
* without missing additional details.
*
* @see [[ApplicationException]]
* @see [[ApplicationExceptionFactory]]
*/
class ErrorDescription {
}
exports.ErrorDescription = ErrorDescription;
//# sourceMappingURL=ErrorDescription.js.map