blob: 7e503aa941e9ea05aff67445e5399fcbb0618dff (
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 ServiceUnavailableException extends IqPacketErrorException {
public ServiceUnavailableException(Element context, String errorMessage) {
super(context, errorMessage);
}
@Override
public String getMessage() {
return "Service unavailable: " + super.getMessage();
}
}
|