niagara-ax/modules/cfr_output/javax/baja/dataRecovery/DataRecoveryTooLargeException.java
2026-03-17 13:31:18 -07:00

35 lines
773 B
Java

/*
* Decompiled with CFR 0.152.
*/
package javax.baja.dataRecovery;
import javax.baja.dataRecovery.DataRecoveryException;
/*
* Illegal identifiers - consider using --renameillegalidents true
*/
public class DataRecoveryTooLargeException
extends DataRecoveryException {
public int attemptedSize;
public int maxSize;
private final /* synthetic */ void this() {
this.attemptedSize = 0;
this.maxSize = 0;
}
public DataRecoveryTooLargeException(int n, int n2) {
this.this();
this.attemptedSize = n;
this.maxSize = n2;
}
public DataRecoveryTooLargeException(int n, int n2, String string) {
super(string);
this.this();
this.attemptedSize = n;
this.maxSize = n2;
}
}