io.securecodebox.persistence.defectdojo.http.MissingProxyConfigValue Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of defectdojo-client Show documentation
Show all versions of defectdojo-client Show documentation
This library helps with interacting with the REST API of DefectDojo.
The newest version!
// SPDX-FileCopyrightText: the secureCodeBox authors
//
// SPDX-License-Identifier: Apache-2.0
package io.securecodebox.persistence.defectdojo.http;
import lombok.NonNull;
/**
* This exception indicates a missing proxy config value
*/
public final class MissingProxyConfigValue extends RuntimeException {
MissingProxyConfigValue(@NonNull final ProxyConfigNames name) {
super(String.format("Expected system property '%s' not set!", name.getLiterat()));
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy