jimu-decompiled/sources/com/google/zxing/NotFoundException.java
2025-05-13 19:24:51 +02:00

20 lines
505 B
Java

package com.google.zxing;
/* loaded from: classes.dex */
public final class NotFoundException extends ReaderException {
private static final NotFoundException INSTANCE;
static {
NotFoundException notFoundException = new NotFoundException();
INSTANCE = notFoundException;
notFoundException.setStackTrace(ReaderException.NO_TRACE);
}
private NotFoundException() {
}
public static NotFoundException getNotFoundInstance() {
return INSTANCE;
}
}