Rabbit-R1/android (non root)/java/sources/com/google/zxing/NotFoundException.java

20 lines
490 B
Java
Raw Normal View History

2024-05-21 21:08:36 +00:00
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() {
}
}