UNPKG

symflow

Version:

SymFlow is a powerful workflow and state machine engine for Node.js, inspired by Symfony Workflow. It allows you to define workflows, transition entities between states, and optionally log audit trails.

11 lines 358 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.TransitionException = void 0; class TransitionException extends Error { constructor(message) { super(message); this.name = 'TransitionException'; } } exports.TransitionException = TransitionException; //# sourceMappingURL=transition-exception.js.map