DomainTemplateException.java

package fr.tiogars.template.client;

/**
 * Indicates that the DomainTemplate API returned an unexpected response.
 *
 * @since 0.1.0
 */
public class DomainTemplateException extends RuntimeException {

    /**
     * Creates an exception with the response failure details.
     *
     * @param message response failure details
     */
    public DomainTemplateException(String message) {
        super(message);
    }
}