Fork of Poseidon providing Bukkit #1060 to older Beta versions (b1.0-b1.7.3)
at develop 20 lines 537 B view raw
1package org.bukkit.plugin; 2 3public class AuthorNagException extends RuntimeException { 4 private final String message; 5 6 /** 7 * Constructs a new UnknownDependencyException based on the given Exception 8 * 9 * @param message Brief message explaining the cause of the exception 10 * @param throwable Exception that triggered this Exception 11 */ 12 public AuthorNagException(final String message) { 13 this.message = message; 14 } 15 16 @Override 17 public String getMessage() { 18 return message; 19 } 20}