Newer
Older
ultramine_bukkit / src / main / java / org / bukkit / plugin / AuthorNagException.java
@vlad20012 vlad20012 on 24 Feb 2017 447 bytes initial
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;
	}
}