@tjieco/library
Version:
TypeScript port of ZXing multi-format 1D/2D barcode image processing library, with Code128 and ITF support.
20 lines (19 loc) • 696 B
TypeScript
export default class Exception {
private type;
private message;
static IllegalArgumentException: string;
static NotFoundException: string;
static ArithmeticException: string;
static FormatException: string;
static ChecksumException: string;
static WriterException: string;
static IllegalStateException: string;
static UnsupportedOperationException: string;
static ReedSolomonException: string;
static ArgumentException: string;
static ReaderException: string;
constructor(type: string, message?: string);
getType(): string;
getMessage(): string | undefined;
static isOfType(ex: any, type: string): boolean;
}