Rabbit-R1/switch port/java/sources/com/google/zxing/ChecksumException.java

28 lines
750 B
Java
Raw Normal View History

2024-05-21 16:08:36 -05:00
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;
}
}