org.jboss.pnc.environmentdriver.exceptions.TemporarilyUnableToStartException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of environment-driver Show documentation
Show all versions of environment-driver Show documentation
Environment driver provides REST endpoints to create and destroy Openshift objects
package org.jboss.pnc.environmentdriver.exceptions;
public class TemporarilyUnableToStartException extends RuntimeException {
private static final long serialVersionUID = 1L;
public TemporarilyUnableToStartException(String message) {
super(message);
}
public TemporarilyUnableToStartException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy