package gov.va.med.edp.web.controller; /** * TODO: document UnrecognizedClientException */ public class UnrecognizedClientException extends Exception { public static final String UNRECOGNIZED_CLIENT_MESSAGE = "request from an unrecognized client with swfID="; public static final String NO_MACHINE_NAME_PARAM_MESSAGE = "Could not find machine name in the HTTPHeader " + SiteCodeController.MACHINE_NAME_HEADER + " nor found the machine name in user principal or request parameter with name"; public UnrecognizedClientException(String message, String swfID) { super(message + "'" + swfID + "'"); } }