ArrayIndexOutOfBoundsException.d.ts 333 B

1234567891011
  1. import IndexOutOfBoundsException from './IndexOutOfBoundsException';
  2. /**
  3. * Custom Error class of type Exception.
  4. */
  5. export default class ArrayIndexOutOfBoundsException extends IndexOutOfBoundsException {
  6. index: number;
  7. message: string;
  8. static readonly kind: string;
  9. constructor(index?: number, message?: string);
  10. }