FormsServiceException.java 1.01 KB
/*
 * Decompiled with CFR 0_118.
 */
package com.adobe.fd.forms.internal.exception;

import com.adobe.fd.forms.internal.logging.FormsServiceLogger;

public class FormsServiceException
extends com.adobe.fd.forms.api.FormsServiceException {
    private static FormsServiceLogger logger = new FormsServiceLogger(FormsServiceException.class);

    public FormsServiceException() {
    }

    public FormsServiceException(String message) {
        super(message);
    }

    public FormsServiceException(String message, Throwable cause) {
        super(message, cause);
    }

    public FormsServiceException(Throwable cause) {
        super(cause);
    }

    public FormsServiceException(String message, Object[] args) {
        super(logger.formatMsg(logger.msgToLog(message), args));
        logger.error(message, args);
    }

    public FormsServiceException(String message, Object[] args, Throwable cause) {
        super(logger.formatMsg(logger.msgToLog(message), args), cause);
        logger.error(message, args, cause);
    }
}