UNPKG

wordmap

Version:
13 lines (12 loc) 381 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); /** * A generic exception for code that has not yet been implemented. */ class NotImplemented extends Error { constructor() { super(`This code block has not yet been implemented. Maybe you should finish it!`); this.name = "NotImplemented"; } } exports.default = NotImplemented;