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

27 lines
720 B
Java

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