mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-25 16:42:30 -06:00
27 lines
750 B
Java
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;
|
|
}
|
|
}
|