now new entity is created in XML as well, not only as in-memory object
This commit is contained in:
13
src/exception/DuplicateEntryException.java
Normal file
13
src/exception/DuplicateEntryException.java
Normal file
@ -0,0 +1,13 @@
|
||||
package exception;
|
||||
|
||||
public class DuplicateEntryException extends EntityListIntegrityException {
|
||||
|
||||
public DuplicateEntryException() {
|
||||
super();
|
||||
}
|
||||
|
||||
public DuplicateEntryException(String message) {
|
||||
super(message);
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user