jimu-decompiled/sources/com/thoughtworks/xstream/mapper/CannotResolveClassException.java
2025-05-13 19:24:51 +02:00

15 lines
371 B
Java

package com.thoughtworks.xstream.mapper;
import com.thoughtworks.xstream.XStreamException;
/* loaded from: classes.dex */
public class CannotResolveClassException extends XStreamException {
public CannotResolveClassException(String str) {
super(str);
}
public CannotResolveClassException(String str, Throwable th) {
super(str, th);
}
}