mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-26 09:02:34 -06:00
28 lines
720 B
Java
28 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;
|
||
|
}
|
||
|
}
|