jimu-decompiled/sources/com/google/zxing/FormatException.java
2025-05-13 19:24:51 +02:00

28 lines
767 B
Java

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