1
0
Fork 0
mirror of https://github.com/vanitasvitae/Smack.git synced 2024-06-16 08:34:50 +02:00

s/MucConfigurationNotSupported/MucConfigurationNotSupportedException/

This commit is contained in:
Florian Schmaus 2015-05-12 11:56:03 +02:00
parent ff72ea320c
commit 9e351f0535
2 changed files with 5 additions and 5 deletions

View file

@ -24,7 +24,7 @@ import org.jivesoftware.smack.SmackException.NoResponseException;
import org.jivesoftware.smack.SmackException.NotConnectedException; import org.jivesoftware.smack.SmackException.NotConnectedException;
import org.jivesoftware.smack.XMPPException.XMPPErrorException; import org.jivesoftware.smack.XMPPException.XMPPErrorException;
import org.jivesoftware.smack.util.StringUtils; import org.jivesoftware.smack.util.StringUtils;
import org.jivesoftware.smackx.muc.MultiUserChatException.MucConfigurationNotSupported; import org.jivesoftware.smackx.muc.MultiUserChatException.MucConfigurationNotSupportedException;
import org.jivesoftware.smackx.xdata.Form; import org.jivesoftware.smackx.xdata.Form;
import org.jivesoftware.smackx.xdata.FormField; import org.jivesoftware.smackx.xdata.FormField;
import org.jxmpp.jid.Jid; import org.jxmpp.jid.Jid;
@ -97,9 +97,9 @@ public class MucConfigFormManager {
return owners != null; return owners != null;
} }
public MucConfigFormManager setRoomOwners(Collection<? extends Jid> newOwners) throws MucConfigurationNotSupported { public MucConfigFormManager setRoomOwners(Collection<? extends Jid> newOwners) throws MucConfigurationNotSupportedException {
if (!supportsRoomOwners()) { if (!supportsRoomOwners()) {
throw new MucConfigurationNotSupported(MUC_ROOMCONFIG_ROOMOWNERS); throw new MucConfigurationNotSupportedException(MUC_ROOMCONFIG_ROOMOWNERS);
} }
owners.clear(); owners.clear();
owners.addAll(newOwners); owners.addAll(newOwners);

View file

@ -72,14 +72,14 @@ public abstract class MultiUserChatException extends SmackException {
/** /**
* Thrown if the MUC room does not support the requested configuration option. * Thrown if the MUC room does not support the requested configuration option.
*/ */
public static class MucConfigurationNotSupported extends MultiUserChatException { public static class MucConfigurationNotSupportedException extends MultiUserChatException {
/** /**
* *
*/ */
private static final long serialVersionUID = 1L; private static final long serialVersionUID = 1L;
public MucConfigurationNotSupported(String configString) { public MucConfigurationNotSupportedException(String configString) {
super("The MUC configuration '" + configString + "' is not supported by the MUC service"); super("The MUC configuration '" + configString + "' is not supported by the MUC service");
} }
} }