blob: 7925c4232206512d4a1c9096471b8e0875ab68ab (
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 InternalServerErrorException extends IqPacketErrorException {
public InternalServerErrorException(Element packet, String errorText) {
super(packet, errorText);
}
@Override
public String getMessage() {
return "Internal Server Error: " + super.getMessage();
}
}
|