@effect-ts/system
Version:
Effect-TS is a zero dependency set of libraries to write highly productive, purely functional TypeScript at scale.
10 lines (9 loc) • 311 B
JavaScript
// ets_tracing: off
export const ArrayIndexOutOfBoundsExceptionTypeId = /*#__PURE__*/Symbol();
export class ArrayIndexOutOfBoundsException {
constructor(index) {
this.index = index;
this._typeId = ArrayIndexOutOfBoundsExceptionTypeId;
}
}
//# sourceMappingURL=ArrayIndexOutOfBoundsException.mjs.map