All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.sdl.dxa.tridion.pcaclient.ApiClientConfigurationException Maven / Gradle / Ivy

Go to download

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