20 lines
505 B
Java
20 lines
505 B
Java
package com.google.zxing;
|
|
|
|
/* loaded from: classes.dex */
|
|
public final class NotFoundException extends ReaderException {
|
|
private static final NotFoundException INSTANCE;
|
|
|
|
static {
|
|
NotFoundException notFoundException = new NotFoundException();
|
|
INSTANCE = notFoundException;
|
|
notFoundException.setStackTrace(ReaderException.NO_TRACE);
|
|
}
|
|
|
|
private NotFoundException() {
|
|
}
|
|
|
|
public static NotFoundException getNotFoundInstance() {
|
|
return INSTANCE;
|
|
}
|
|
}
|