added error field
This commit is contained in:
parent
eac9e96dee
commit
7c0b2cc9d9
1 changed files with 2 additions and 2 deletions
|
@ -37,12 +37,12 @@ public class ResponseTrans implements Serializable {
|
||||||
|
|
||||||
// the buffers used to build the single body parts -
|
// the buffers used to build the single body parts -
|
||||||
// transient, response must be constructed before this is serialized
|
// transient, response must be constructed before this is serialized
|
||||||
public transient String title, head, body, message;
|
public transient String title, head, body, message, error;
|
||||||
|
|
||||||
|
|
||||||
public ResponseTrans () {
|
public ResponseTrans () {
|
||||||
super ();
|
super ();
|
||||||
title = head = body = message = "";
|
title = head = body = message = error = "";
|
||||||
}
|
}
|
||||||
|
|
||||||
public void reset () {
|
public void reset () {
|
||||||
|
|
Loading…
Add table
Reference in a new issue