All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.bukkit.plugin.messaging.ReservedChannelException Maven / Gradle / Ivy

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 + "')");
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy