what-the-bank/sources/org/simpleframework/xml/strategy/CycleException.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);
}
}