Bukkit  1.4.7-R1.0
 All Classes Namespaces Files Functions Variables Enumerator Pages
ReservedChannelException.java
Go to the documentation of this file.
1 package org.bukkit.plugin.messaging;
2 
6 @SuppressWarnings("serial")
7 public class ReservedChannelException extends RuntimeException {
9  this("Attempted to register for a reserved channel name.");
10  }
11 
12  public ReservedChannelException(String name) {
13  super("Attempted to register for a reserved channel name ('" + name + "')");
14  }
15 }