ste-core
Version:
Core files for the Strongly Typed Events project.
17 lines (16 loc) • 336 B
TypeScript
/**
* Indicates an error with dispatching.
*
* @export
* @class DispatchError
* @extends {Error}
*/
export declare class DispatchError extends Error {
/**
* Creates an instance of DispatchError.
* @param {string} message The message.
*
* @memberOf DispatchError
*/
constructor(message: string);
}