Files
gh-giuseppe-trisciuoglio-de…/skills/spring-boot-crud-patterns/templates/NotFoundException.java.tpl
2025-11-29 18:28:34 +08:00

8 lines
224 B
Smarty

package $package.application.exception;
public class ${entity}NotFoundException extends RuntimeException {
public ${entity}NotFoundException($id_type $id_name) {
super("$entity not found: " + $id_name);
}
}