package de.thedevstack.conversationsplus.xmpp.exceptions; import de.thedevstack.conversationsplus.xml.Element; /** */ public class NotAllowedIqException extends IqPacketErrorException { public NotAllowedIqException(Element context, String errorMessage) { super(context, errorMessage); } }