OutputServiceException.java 1.03 KB
/*
 * Decompiled with CFR 0_118.
 */
package com.adobe.fd.output.internal.exception;

import com.adobe.fd.output.internal.logging.OutputServiceLogger;

public class OutputServiceException
extends com.adobe.fd.output.api.OutputServiceException {
    private static OutputServiceLogger logger = new OutputServiceLogger(OutputServiceException.class);

    public OutputServiceException() {
    }

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

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

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

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

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