now new entity is created in XML as well, not only as in-memory object

This commit is contained in:
2024-07-22 00:46:49 +07:00
parent d4afde065d
commit d39374d8bb
30 changed files with 102 additions and 60 deletions

View File

@ -0,0 +1,13 @@
package exception;
public class DuplicateEntryException extends EntityListIntegrityException {
public DuplicateEntryException() {
super();
}
public DuplicateEntryException(String message) {
super(message);
}
}