SalesforceException.java
844 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.cq.mcm.salesforce;
public class SalesforceException
extends Exception {
static final long serialVersionUID = 548754621;
static final Long INVALID_SEARCH_QUERY_PARAMS = 1;
private Long exceptionCode;
public SalesforceException(String message, Long code) {
super(message);
this.exceptionCode = code;
}
public SalesforceException(String message) {
super(message);
}
public SalesforceException(Throwable cause) {
super(cause);
}
public SalesforceException(String message, Throwable cause) {
super(message, cause);
}
public Long getExceptionCode() {
return this.exceptionCode;
}
public void setExceptionCode(Long exceptionCode) {
this.exceptionCode = exceptionCode;
}
}