25 lines
587 B
Java
25 lines
587 B
Java
package com.google.zxing;
|
|
|
|
/* loaded from: classes.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];
|
|
}
|
|
|
|
ReaderException() {
|
|
}
|
|
|
|
@Override // java.lang.Throwable
|
|
public final synchronized Throwable fillInStackTrace() {
|
|
return null;
|
|
}
|
|
|
|
ReaderException(Throwable th) {
|
|
super(th);
|
|
}
|
|
}
|