OutputServiceException.java
1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/*
* 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);
}
}