IndexOutOfBoundsException.js 217 B

12345678
  1. import Exception from './Exception';
  2. /**
  3. * Custom Error class of type Exception.
  4. */
  5. export default class IndexOutOfBoundsException extends Exception {
  6. }
  7. IndexOutOfBoundsException.kind = 'IndexOutOfBoundsException';