Newer
Older
ultramine_bukkit / src / main / java / org / bukkit / plugin / messaging / ReservedChannelException.java
@vlad20012 vlad20012 on 24 Feb 2017 465 bytes initial
package org.bukkit.plugin.messaging;

/**
 * Thrown if a plugin attempts to register for a reserved channel (such as
 * "REGISTER")
 */
@SuppressWarnings("serial")
public class ReservedChannelException extends RuntimeException
{
	public ReservedChannelException()
	{
		this("Attempted to register for a reserved channel name.");
	}

	public ReservedChannelException(String name)
	{
		super("Attempted to register for a reserved channel name ('" + name + "')");
	}
}