com.obdobion.howto.PluginNotFoundException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of howto Show documentation
Show all versions of howto Show documentation
HowTo menuing system for plugins
package com.obdobion.howto;
/**
*
* PluginNotFoundException class.
*
*
* @author Chris DeGreef [email protected]
*/
public class PluginNotFoundException extends Exception
{
/**
*
* Constructor for PluginNotFoundException.
*
*
* @param message a {@link java.lang.String} object.
*/
public PluginNotFoundException(final String message)
{
super(message);
}
/**
*
* Constructor for PluginNotFoundException.
*
*
* @param message a {@link java.lang.String} object.
* @param cause a {@link java.lang.Throwable} object.
*/
public PluginNotFoundException(final String message, final Throwable cause)
{
super(message, cause);
}
/**
*
* Constructor for PluginNotFoundException.
*
*
* @param message a {@link java.lang.String} object.
* @param cause a {@link java.lang.Throwable} object.
* @param enableSuppression a boolean.
* @param writableStackTrace a boolean.
*/
public PluginNotFoundException(final String message,
final Throwable cause,
final boolean enableSuppression,
final boolean writableStackTrace)
{
super(message, cause, enableSuppression, writableStackTrace);
}
/**
*
* Constructor for PluginNotFoundException.
*
*
* @param cause a {@link java.lang.Throwable} object.
*/
public PluginNotFoundException(final Throwable cause)
{
super(cause);
}
}