source: ccr/trunk/nhin-vista/projects/NHINC/Current/Product/Production/Gateway/SubscriptionDteEjb/src/java/gov/hhs/fha/nhinc/subscription/dte/MultipleSlotValuesFoundException.java@ 507

Last change on this file since 507 was 507, checked in by George Lilly, 15 years ago

NHIN gateway and adaptor for use on linux with VistA EHR and RPMS

File size: 723 bytes
Line 
1/*
2 * To change this template, choose Tools | Templates
3 * and open the template in the editor.
4 */
5package gov.hhs.fha.nhinc.subscription.dte;
6
7/**
8 *
9 * @author rayj
10 */
11public class MultipleSlotValuesFoundException extends Exception {
12
13 /**
14 * Creates a new instance of <code>MultipleSlotValuesFound</code> without detail message.
15 */
16 public MultipleSlotValuesFoundException() {
17 super("Multiple slot values found when expected single result.");
18 }
19
20 /**
21 * Constructs an instance of <code>MultipleSlotValuesFound</code> with the specified detail message.
22 * @param msg the detail message.
23 */
24 public MultipleSlotValuesFoundException(String msg) {
25 super(msg);
26 }
27}
Note: See TracBrowser for help on using the repository browser.