This commit is contained in:
Vladimir
2025-11-29 15:49:04 +07:00
parent a6954c2013
commit 4593d56158
14 changed files with 373 additions and 34 deletions

View File

@@ -0,0 +1,7 @@
package com.example.nto.exception;
public class AlreadyBookedException extends RuntimeException {
public AlreadyBookedException() {
super("уже забронировано");
}
}