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