ColorProfileFailureExceptionHolder.java 994 Bytes
/*
 * Decompiled with CFR 0_118.
 */
package com.adobe.colorprofile;

import com.adobe.colorprofile.ColorProfileFailureException;
import com.adobe.colorprofile.ColorProfileFailureExceptionHelper;
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 ColorProfileFailureExceptionHolder
implements Streamable {
    public ColorProfileFailureException value;

    public ColorProfileFailureExceptionHolder() {
    }

    public ColorProfileFailureExceptionHolder(ColorProfileFailureException initial) {
        this.value = initial;
    }

    public TypeCode _type() {
        return ColorProfileFailureExceptionHelper.type();
    }

    public void _read(InputStream _in) {
        this.value = ColorProfileFailureExceptionHelper.read(_in);
    }

    public void _write(OutputStream _out) {
        ColorProfileFailureExceptionHelper.write(_out, this.value);
    }
}