discord-jadx/app/src/main/java/com/google/zxing/ReaderException.java

18 lines
487 B
Java

package com.google.zxing;
public abstract class ReaderException extends Exception {
public static final boolean i = (System.getProperty("surefire.test.class.path") != null);
public static final StackTraceElement[] j = new StackTraceElement[0];
public ReaderException() {
}
public ReaderException(Throwable th) {
super(th);
}
@Override // java.lang.Throwable
public final synchronized Throwable fillInStackTrace() {
return null;
}
}