aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/java/de/thedevstack/conversationsplus/xmpp/exceptions/NotAllowedIqException.java
blob: 45bf231a0c604e2283204f37f44802c70738d14f (plain)
1
2
3
4
5
6
7
8
9
10
11
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);
    }
}