org.bukkit.plugin.AuthorNagException Maven / Gradle / Ivy
package org.bukkit.plugin;
@SuppressWarnings("serial")
public class AuthorNagException extends RuntimeException {
private final String message;
/**
* Constructs a new AuthorNagException based on the given Exception
*
* @param message Brief message explaining the cause of the exception
*/
public AuthorNagException(final String message) {
this.message = message;
}
@Override
public String getMessage() {
return message;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy