ToSimplePSException.java 667 Bytes
/*
 * Decompiled with CFR 0_118.
 */
package com.adobe.document.xmlform;

import com.adobe.document.xmlform.ToSimplePSExceptionHelper;
import org.omg.CORBA.UserException;

public final class ToSimplePSException
extends UserException {
    private static final long serialVersionUID = 1;
    public String reason = "";

    public ToSimplePSException() {
        super(ToSimplePSExceptionHelper.id());
    }

    public ToSimplePSException(String _reason, String reason) {
        super(_reason);
        this.reason = reason;
    }

    public ToSimplePSException(String reason) {
        super(ToSimplePSExceptionHelper.id());
        this.reason = reason;
    }
}