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