STPServiceException.java
1005 Bytes
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.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);
}
}