@effect-ts/system
Version:
Effect-TS is a zero dependency set of libraries to write highly productive, purely functional TypeScript at scale.
12 lines (9 loc) • 369 B
text/typescript
// ets_tracing: off
export const ArrayIndexOutOfBoundsExceptionTypeId = Symbol()
export type ArrayIndexOutOfBoundsExceptionTypeId =
typeof ArrayIndexOutOfBoundsExceptionTypeId
export class ArrayIndexOutOfBoundsException {
readonly _typeId: ArrayIndexOutOfBoundsExceptionTypeId =
ArrayIndexOutOfBoundsExceptionTypeId
constructor(readonly index: number) {}
}