IndexOutOfBoundsException.js 216 B

12345678
  1. import Exception from './Exception'
  2. export default class IndexOutOfBoundsException extends Exception {
  3. constructor(message) {
  4. super(message)
  5. this.name = Object.keys({ IndexOutOfBoundsException })[0]
  6. }
  7. }