RenderFormException.java 854 Bytes
/*
 * Decompiled with CFR 0_118.
 */
package com.adobe.livecycle.formsservice.exception;

import com.adobe.livecycle.formsservice.exception.FormServerException;

public class RenderFormException
extends FormServerException {
    static final long serialVersionUID = -4110911491721878290L;

    public RenderFormException() {
    }

    public RenderFormException(String reason) {
        super(reason);
    }

    public RenderFormException(String reason, Throwable e) {
        super(reason, e);
    }

    public RenderFormException(Exception e) {
        super(e);
    }

    public RenderFormException(String resourceID, int severity, boolean log) {
        super(resourceID, severity, log);
    }

    public RenderFormException(String resourceID, String[] args, int severity, boolean log) {
        super(resourceID, args, severity, log);
    }
}