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

28 lines
720 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 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;
}
}