/******************************************************************************* *******************************************************************************/ package at.gv.egiz.eaaf.modules.pvp2.sp.exception; import at.gv.egiz.eaaf.modules.pvp2.exception.PVP2Exception; /** * @author tlenz * */ public class AssertionAttributeExtractorExeption extends PVP2Exception { /** * */ private static final long serialVersionUID = -6459000942830951492L; public AssertionAttributeExtractorExeption(String attributeName) { super("Parse PVP2.1 assertion FAILED: Attribute " + attributeName + " can not extract.", null); } public AssertionAttributeExtractorExeption(String messageId, Object[] parameters) { super(messageId, parameters); } public AssertionAttributeExtractorExeption() { super("Parse PVP2.1 assertion FAILED. Interfederation not possible", null); } }