what-the-bank/sources/org/simpleframework/xml/strategy/CycleException.java

15 lines
398 B
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
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);
}
}