UNPKG

flownote

Version:

FlowNote lets developers create, organize, and reason about event-oriented applications with a simple flow-based language.

9 lines (7 loc) 151 B
class NotFoundError extends Error { constructor (message) { super(message) this.name = 'NotFoundError' } } module.exports = NotFoundError