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