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

14 lines
359 B
Java

package com.google.zxing;
public final class NotFoundException extends ReaderException {
public static final NotFoundException k;
static {
NotFoundException notFoundException = new NotFoundException();
k = notFoundException;
notFoundException.setStackTrace(ReaderException.j);
}
private NotFoundException() {
}
}