35 lines
773 B
Java
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;
|
|
}
|
|
}
|
|
|