aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/java/de/thedevstack/conversationsplus/xmpp/exceptions/UndefinedConditionException.java
blob: de821873eb82e78f469da0d3aafe1666d8a36ca9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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();
    }
}