Rabbit-R1/switch port/java/sources/com/google/zxing/NotFoundException.java
2024-05-21 17:08:36 -04:00

19 lines
490 B
Java

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