001 package org.bukkit.plugin.messaging;
002
003 /**
004 * Thrown if a plugin attempts to register for a reserved channel (such as
005 * "REGISTER")
006 */
007 @SuppressWarnings("serial")
008 public class ReservedChannelException extends RuntimeException {
009 public ReservedChannelException() {
010 this("Attempted to register for a reserved channel name.");
011 }
012
013 public ReservedChannelException(String name) {
014 super("Attempted to register for a reserved channel name ('" + name + "')");
015 }
016 }