mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2025-01-09 13:43:22 +00:00
20 lines
490 B
Java
20 lines
490 B
Java
|
package com.google.zxing;
|
||
|
|
||
|
/* loaded from: classes3.dex */
|
||
|
public final class NotFoundException extends ReaderException {
|
||
|
private static final NotFoundException INSTANCE;
|
||
|
|
||
|
public static NotFoundException getNotFoundInstance() {
|
||
|
return INSTANCE;
|
||
|
}
|
||
|
|
||
|
static {
|
||
|
NotFoundException notFoundException = new NotFoundException();
|
||
|
INSTANCE = notFoundException;
|
||
|
notFoundException.setStackTrace(NO_TRACE);
|
||
|
}
|
||
|
|
||
|
private NotFoundException() {
|
||
|
}
|
||
|
}
|