![JAR search and dependency download from the Maven repository](/logo.png)
com.sdl.dxa.tridion.pcaclient.ApiClientConfigurationException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dxa-tridion-common Show documentation
Show all versions of dxa-tridion-common Show documentation
Tridion Common contains common code for Tridion for other DXA artifacts expect model-specific (like DD4T)
The newest version!
package com.sdl.dxa.tridion.pcaclient;
public class ApiClientConfigurationException extends RuntimeException {
public ApiClientConfigurationException() {
}
public ApiClientConfigurationException(String message) {
super(message);
}
public ApiClientConfigurationException(String message, Throwable cause) {
super(message, cause);
}
public ApiClientConfigurationException(Throwable cause) {
super(cause);
}
public ApiClientConfigurationException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy