mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-26 09:02:34 -06:00
27 lines
738 B
Java
27 lines
738 B
Java
|
package com.google.zxing;
|
||
|
|
||
|
/* loaded from: classes3.dex */
|
||
|
public abstract class ReaderException extends Exception {
|
||
|
protected static final StackTraceElement[] NO_TRACE;
|
||
|
protected static final boolean isStackTrace;
|
||
|
|
||
|
static {
|
||
|
isStackTrace = System.getProperty("surefire.test.class.path") != null;
|
||
|
NO_TRACE = new StackTraceElement[0];
|
||
|
}
|
||
|
|
||
|
/* JADX INFO: Access modifiers changed from: package-private */
|
||
|
public ReaderException() {
|
||
|
}
|
||
|
|
||
|
/* JADX INFO: Access modifiers changed from: package-private */
|
||
|
public ReaderException(Throwable th) {
|
||
|
super(th);
|
||
|
}
|
||
|
|
||
|
@Override // java.lang.Throwable
|
||
|
public final synchronized Throwable fillInStackTrace() {
|
||
|
return null;
|
||
|
}
|
||
|
}
|