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