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

19 lines
400 B
Java

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