source: EDIS/tags/ed/tracking-server-core/src/main/java/gov/va/med/edp/web/controller/UnrecognizedClientException.java@ 1240

Last change on this file since 1240 was 1240, checked in by George Lilly, 13 years ago

new version from the VA

File size: 637 bytes
Line 
1package gov.va.med.edp.web.controller;
2
3/**
4 * TODO: document UnrecognizedClientException
5 */
6public class UnrecognizedClientException extends Exception {
7
8 public static final String UNRECOGNIZED_CLIENT_MESSAGE = "request from an unrecognized client with swfID=";
9 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";
10
11 public UnrecognizedClientException(String message, String swfID) {
12 super(message + "'" + swfID + "'");
13 }
14}
Note: See TracBrowser for help on using the repository browser.