TemplateNotFoundException.java 370 Bytes
package com.ecommerce.notification.exception;

public class TemplateNotFoundException extends RuntimeException {
    public TemplateNotFoundException(String message) {
        super(message);
    }
    
    public TemplateNotFoundException(String templateName, String type) {
        super(String.format("Template not found: %s (type: %s)", templateName, type));
    }
}