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