com.danielflower.apprunner.router.problems.AppRunnerException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of app-runner-router Show documentation
Show all versions of app-runner-router Show documentation
A reverse proxy for AppRunner that allows you horizontally scale AppRunner
package com.danielflower.apprunner.router.problems;
public class AppRunnerException extends RuntimeException {
public AppRunnerException(String message) {
super(message);
}
public AppRunnerException(String message, Throwable cause) {
super(message, cause);
}
public AppRunnerException(Throwable cause) {
super(cause);
}
}