@zxing/library
Version:
TypeScript port of ZXing multi-format 1D/2D barcode image processing library.
11 lines (10 loc) • 333 B
TypeScript
import IndexOutOfBoundsException from './IndexOutOfBoundsException';
/**
* Custom Error class of type Exception.
*/
export default class ArrayIndexOutOfBoundsException extends IndexOutOfBoundsException {
index: number;
message: string;
static readonly kind: string;
constructor(index?: number, message?: string);
}