Initial commit

This commit is contained in:
2025-05-13 19:24:51 +02:00
commit a950f49678
10604 changed files with 932663 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
package com.thoughtworks.xstream.converters.reflection;
/* loaded from: classes.dex */
public class MissingFieldException extends ObjectAccessException {
private final String className;
private final String fieldName;
public MissingFieldException(String str, String str2) {
super("Field not found in class.");
this.className = str;
this.fieldName = str2;
StringBuffer stringBuffer = new StringBuffer();
stringBuffer.append(str);
stringBuffer.append(".");
stringBuffer.append(str2);
add("field", stringBuffer.toString());
}
protected String getClassName() {
return this.className;
}
public String getFieldName() {
return this.fieldName;
}
}