import Exception from './Exception'; export default class IndexOutOfRangeException extends Exception { constructor(variableName: string, index: number, minBound: number, maxBound: number, innerException?: Exception); }