UNPKG

ste-core

Version:
23 lines (22 loc) 492 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.DispatchError = void 0; /** * Indicates an error with dispatching. * * @export * @class DispatchError * @extends {Error} */ class DispatchError extends Error { /** * Creates an instance of DispatchError. * @param {string} message The message. * * @memberOf DispatchError */ constructor(message) { super(message); } } exports.DispatchError = DispatchError;