ExceptionBase.java
704 Bytes
/*
* Decompiled with CFR 0_118.
*/
package com.adobe.xfa.ut;
import com.adobe.xfa.ut.ExErrItem;
public abstract class ExceptionBase
extends RuntimeException {
private static final long serialVersionUID = -687536745161985131L;
private boolean mbWasReported;
public ExceptionBase() {
}
public ExceptionBase(boolean bWasReported) {
this.mbWasReported = bWasReported;
}
public abstract void resolve();
public abstract int count();
public abstract ExErrItem item(int var1);
public boolean wasReported() {
return this.mbWasReported;
}
public void wasReported(boolean bWasReported) {
this.mbWasReported = bWasReported;
}
}