added error field

This commit is contained in:
hns 2001-02-06 09:39:51 +00:00
parent eac9e96dee
commit 7c0b2cc9d9

View file

@ -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 () {