ExportExceptionHolder.java
912 Bytes
/*
* Decompiled with CFR 0_118.
*/
package com.adobe.document.xmlform.FormPackage;
import com.adobe.document.xmlform.FormPackage.ExportException;
import com.adobe.document.xmlform.FormPackage.ExportExceptionHelper;
import org.omg.CORBA.TypeCode;
import org.omg.CORBA.portable.InputStream;
import org.omg.CORBA.portable.OutputStream;
import org.omg.CORBA.portable.Streamable;
public final class ExportExceptionHolder
implements Streamable {
public ExportException value;
public ExportExceptionHolder() {
}
public ExportExceptionHolder(ExportException initial) {
this.value = initial;
}
public TypeCode _type() {
return ExportExceptionHelper.type();
}
public void _read(InputStream _in) {
this.value = ExportExceptionHelper.read(_in);
}
public void _write(OutputStream _out) {
ExportExceptionHelper.write(_out, this.value);
}
}