UNPKG

internetmarke

Version:

A node implementation to use the Internetmarke web service of Deutsche Post.

19 lines (18 loc) 601 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.UserError = exports.SoapError = exports.InternetmarkeError = void 0; /* eslint-disable max-classes-per-file */ class InternetmarkeError extends Error { constructor(message) { super(message); this.name = this.constructor.name; Error.captureStackTrace(this, this.constructor); } } exports.InternetmarkeError = InternetmarkeError; class SoapError extends InternetmarkeError { } exports.SoapError = SoapError; class UserError extends InternetmarkeError { } exports.UserError = UserError;