This commit is contained in:
2025-09-29 09:59:37 -04:00
parent b02c9546d9
commit 6cabfec4e9
31 changed files with 1023 additions and 74 deletions

View File

@@ -0,0 +1,16 @@
/**
* license: GPLv3
* lodge.reservationsystem
*/
package lodge.datamodel;
public class DuplicateObjectException extends RuntimeException {
public DuplicateObjectException() {
super();
}
public DuplicateObjectException(String message) {
super(message);
}
}