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

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

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

/**
 * Base OpenStackj Exception 
 * 
 * @author Jeremy Unruh
 */
public class OS4JException extends RuntimeException {

    private static final long serialVersionUID = 1L;

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy