customer creation now pointing to velocity

This commit is contained in:
2026-05-29 15:13:09 +02:00
parent 77b53a8bf0
commit 0bb63055a9
80 changed files with 1354 additions and 1984 deletions

View File

@@ -0,0 +1,15 @@
package zw.qantra.tm.exceptions;
public class AlreadyExistsException extends RuntimeException {
private String message;
public AlreadyExistsException(String message) {
this.message = message;
}
@Override
public String getMessage() {
return message;
}
}