15 lines
398 B
Java
15 lines
398 B
Java
package org.simpleframework.xml.strategy;
|
|
|
|
import org.simpleframework.xml.core.PersistenceException;
|
|
|
|
/* loaded from: classes6.dex */
|
|
public class CycleException extends PersistenceException {
|
|
public CycleException(String str, Object... objArr) {
|
|
super(str, objArr);
|
|
}
|
|
|
|
public CycleException(Throwable th, String str, Object... objArr) {
|
|
super(th, str, objArr);
|
|
}
|
|
}
|