We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7b133ba commit c1773ffCopy full SHA for c1773ff
common/src/main/java/com/genexus/properties/GXObjectProperties.java
@@ -9,6 +9,7 @@ public class GXObjectProperties
9
private int errorCode = 0;
10
private int statusCode = 0;
11
private int protocol = 1;
12
+ private String statusMessage = "";
13
14
public Location getLocation()
15
{
@@ -45,6 +46,14 @@ public void setErrorMessage(String value)
45
46
47
errorMessage = value;
48
}
49
+ public String getStatusMessage()
50
+ {
51
+ return statusMessage;
52
+ }
53
+ public void setStatusMessage(String value)
54
55
+ statusMessage = value;
56
57
58
public int getProtocol()
59
0 commit comments