blob: 38e1f6d21febe14188344f12ee7adc9f56e5abc8 (
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 de.thedevstack.conversationsplus.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();
}
}
|