package de.thedevstack.conversationsplus.xmpp.exceptions; import eu.siacs.conversations.xml.Element; /** * Created by steckbrief on 22.08.2016. */ public class UndefinedConditionException extends IqPacketErrorException { public UndefinedConditionException(Element packet, String errorText) { super(packet, errorText); } @Override public String getMessage() { return "Undefined Condition: " + super.getMessage(); } }