import Exception from './Exception'; /** * Custom Error class of type Exception. */ export default class IndexOutOfBoundsException extends Exception { } IndexOutOfBoundsException.kind = 'IndexOutOfBoundsException';