STPServiceException.java 1005 Bytes
/*
 * Decompiled with CFR 0_118.
 */
package com.adobe.fd.stp.internal.exception;

import com.adobe.fd.stp.internal.logging.STPServiceLogger;

public class STPServiceException
extends com.adobe.fd.stp.api.STPServiceException {
    public static STPServiceLogger logger = new STPServiceLogger(STPServiceException.class);

    public STPServiceException() {
    }

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

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

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

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

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