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

org.openstack4j.api.exceptions.ConnectorNotFoundException Maven / Gradle / Ivy

There is a newer version: 3.2.0
Show newest version
package org.openstack4j.api.exceptions;

/**
 * Exception that is thrown when the user hasn't included the desired OpenStack4j connector within their classpath
 *
 * @author Jeremy Unruh
 */
public class ConnectorNotFoundException extends OS4JException {

    private static final long serialVersionUID = 1L;

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

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy