15815213711
2024-08-26 67b8b6731811983447e053d4396b3708c14dfe3c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
"use strict";
 
Object.defineProperty(exports, "__esModule", {
  value: true
});
exports.UnexpectedStateError = void 0;
 
var _es6Error = _interopRequireDefault(require("es6-error"));
 
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
 
/* eslint-disable fp/no-class, fp/no-this */
class UnexpectedStateError extends _es6Error.default {
  constructor(message, code = 'UNEXPECTED_STATE_ERROR') {
    super(message);
    this.code = code;
  }
 
}
 
exports.UnexpectedStateError = UnexpectedStateError;
//# sourceMappingURL=errors.js.map