ts-scikit
Version:
A scientific toolkit written in Typescript
11 lines • 347 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.IllegalStateError = void 0;
class IllegalStateError extends Error {
constructor(message) {
super(message);
this.name = 'IllegalStateError';
}
}
exports.IllegalStateError = IllegalStateError;
//# sourceMappingURL=illegal-state-error.js.map