com.danielflower.apprunner.router.problems.InvalidConfigException 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 InvalidConfigException extends AppRunnerException {
public InvalidConfigException(String message) {
super(message);
}
}