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

27 lines
750 B
Java

package com.google.zxing;
/* loaded from: classes3.dex */
public final class ChecksumException extends ReaderException {
private static final ChecksumException INSTANCE;
static {
ChecksumException checksumException = new ChecksumException();
INSTANCE = checksumException;
checksumException.setStackTrace(NO_TRACE);
}
private ChecksumException() {
}
private ChecksumException(Throwable th) {
super(th);
}
public static ChecksumException getChecksumInstance() {
return isStackTrace ? new ChecksumException() : INSTANCE;
}
public static ChecksumException getChecksumInstance(Throwable th) {
return isStackTrace ? new ChecksumException(th) : INSTANCE;
}
}