io.kroxylicious.proxy.config.IllegalConfigurationException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kroxylicious-runtime Show documentation
Show all versions of kroxylicious-runtime Show documentation
The proxy code which provides the runtime environment in which filters execute
The newest version!
/*
* Copyright Kroxylicious Authors.
*
* Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0
*/
package io.kroxylicious.proxy.config;
/**
* Signals that the configuration is syntactically/semantically correct but illegal
* by some policy. For example if a configuration switches on a test-only feature
* but the proxy does not have test-only configuration loading enabled.
*/
public class IllegalConfigurationException extends RuntimeException {
public IllegalConfigurationException(String message) {
super(message);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy