15 lines
389 B
Java
15 lines
389 B
Java
package com.thoughtworks.xstream.converters.reflection;
|
|
|
|
import com.thoughtworks.xstream.converters.ErrorWritingException;
|
|
|
|
/* loaded from: classes.dex */
|
|
public class ObjectAccessException extends ErrorWritingException {
|
|
public ObjectAccessException(String str) {
|
|
super(str);
|
|
}
|
|
|
|
public ObjectAccessException(String str, Throwable th) {
|
|
super(str, th);
|
|
}
|
|
}
|