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

org.jboss.pnc.environmentdriver.exceptions.BadResourcesRequestException Maven / Gradle / Ivy

Go to download

Environment driver provides REST endpoints to create and destroy Openshift objects

There is a newer version: 3.0.0
Show newest version
package org.jboss.pnc.environmentdriver.exceptions;

public class BadResourcesRequestException extends RuntimeException {

    private static final long serialVersionUID = 4098171178739096610L;

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy