01: package org.swingml.server;
02:
03: /**
04: * @author CrossLogic
05: */
06: public class NullSwingMLResponse extends SwingMLServerResponse {
07:
08: public NullSwingMLResponse() {
09: super ();
10: // TODO - Adding this error, causes controllers that return no body to work incorrectly. Let it go...
11: // addError(CRITICAL, "Invalid Response received from server.");
12: }
13: }
|