2025-09-15 11:08:45 -04:00
|
|
|
/**
|
|
|
|
|
* license: GPLv3
|
|
|
|
|
* lodge.reservationsystem
|
|
|
|
|
*/
|
2025-09-04 22:34:26 -04:00
|
|
|
package lodge.reservationsystem;
|
|
|
|
|
|
2025-09-06 20:22:27 -04:00
|
|
|
public class DuplicateObjectException extends RuntimeException {
|
2025-09-04 22:34:26 -04:00
|
|
|
public DuplicateObjectException() {
|
|
|
|
|
super();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public DuplicateObjectException(String message) {
|
|
|
|
|
super(message);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|