- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
15 lines
350 B
Java
15 lines
350 B
Java
package com.amazonaws.internal.keyvaluestore;
|
|
|
|
/* loaded from: classes.dex */
|
|
public class KeyNotFoundException extends Exception {
|
|
private static final long serialVersionUID = 1;
|
|
|
|
public KeyNotFoundException(String str, Throwable th) {
|
|
super(str, th);
|
|
}
|
|
|
|
public KeyNotFoundException(String str) {
|
|
super(str);
|
|
}
|
|
}
|