UNPKG

@zxing/library

Version:

TypeScript port of ZXing multi-format 1D/2D barcode image processing library.

11 lines (10 loc) 274 B
import Exception from './Exception'; /** * Custom Error class of type Exception. */ export default class NotFoundException extends Exception { static getNotFoundInstance() { return new NotFoundException(); } } NotFoundException.kind = 'NotFoundException';