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(); } }