unreachableException.js 277 B

123456789101112
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", {
  3. value: true
  4. });
  5. exports.default = void 0;
  6. class UnreachableException {
  7. constructor(value) {
  8. this.error = new Error(`unreachable case: ${JSON.stringify(value)}`);
  9. }
  10. }
  11. exports.default = UnreachableException;