/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package gov.hhs.fha.nhinc.subscription.dte; /** * * @author rayj */ public class MultipleSlotValuesFoundException extends Exception { /** * Creates a new instance of MultipleSlotValuesFound without detail message. */ public MultipleSlotValuesFoundException() { super("Multiple slot values found when expected single result."); } /** * Constructs an instance of MultipleSlotValuesFound with the specified detail message. * @param msg the detail message. */ public MultipleSlotValuesFoundException(String msg) { super(msg); } }