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

com.obdobion.howto.PluginNotFoundException Maven / Gradle / Ivy

There is a newer version: 1.2.1
Show newest version
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); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy