TaskManagerException.java
900 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
38
39
40
41
42
/*
* Decompiled with CFR 0_118.
*/
package com.adobe.granite.taskmanagement;
public class TaskManagerException
extends Exception {
private String taskId;
public TaskManagerException() {
}
public TaskManagerException(String message) {
super(message);
}
public TaskManagerException(String message, Throwable cause) {
super(message, cause);
}
public TaskManagerException(String message, StackTraceElement[] stack) {
super(message);
this.setStackTrace(stack);
}
public void setTaskId(String aTaskId) {
this.taskId = aTaskId;
}
public String getTaskId() {
return this.taskId;
}
public String getMessage() {
String message = super.getMessage();
if (null != this.taskId) {
message = message + ", taskId = " + this.taskId;
}
return message;
}
}