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

org.webharvest.exception.PluginException Maven / Gradle / Ivy

The newest version!
package org.webharvest.exception;

/**
 * Runtime exception occurred during plugin processors registration or creation.
 */
public class PluginException extends BaseException {
    public PluginException() {
    }

    public PluginException(String message) {
        super(message);
    }

    public PluginException(Throwable cause) {
        super(cause);
    }

    public PluginException(String message, Throwable cause) {
        super(message, cause);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy