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