1 package fr.tiogars.template.client;
2
3 /**
4 * Indicates that the DomainTemplate API returned an unexpected response.
5 *
6 * @since 0.1.0
7 */
8 public class DomainTemplateException extends RuntimeException {
9
10 /**
11 * Creates an exception with the response failure details.
12 *
13 * @param message response failure details
14 */
15 public DomainTemplateException(String message) {
16 super(message);
17 }
18 }