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

org.cloudfoundry.client.lib.CloudException Maven / Gradle / Ivy

The newest version!
package org.cloudfoundry.client.lib;

@SuppressWarnings("serial")
public class CloudException extends RuntimeException {

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

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

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy