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

/**
 * Thrown if a Plugin attempts to send a message on an unregistered channel.
 */
@SuppressWarnings("serial")
public class ChannelNotRegisteredException extends RuntimeException
{
	public ChannelNotRegisteredException()
	{
		this("Attempted to send a plugin message through an unregistered channel.");
	}

	public ChannelNotRegisteredException(String channel)
	{
		super("Attempted to send a plugin message through the unregistered channel `" + channel + "'.");
	}
}