io.javaoperatorsdk.operator.sample.ErrorSimulationException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of webserver-sample Show documentation
Show all versions of webserver-sample Show documentation
Provisions an nginx Webserver based on a CRD
package io.javaoperatorsdk.operator.sample;
public class ErrorSimulationException extends RuntimeException {
public ErrorSimulationException(String message) {
super(message);
}
}