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

net.anotheria.extensions.php.exceptions.PHPPluginBootstrapException Maven / Gradle / Ivy

There is a newer version: 4.0.3
Show newest version
package net.anotheria.extensions.php.exceptions;

/**
 * Thrown on MoskitoPHP plugin initialization fail
 */
public class PHPPluginBootstrapException extends RuntimeException {

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

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy