maybe ready

This commit is contained in:
2025-11-30 01:20:49 +03:00
parent af8267a22a
commit 0000cb6da1
16 changed files with 291 additions and 24 deletions

View File

@@ -0,0 +1,7 @@
package com.example.nto.exception;
public class PlaceAlreadyBookedException extends RuntimeException {
public PlaceAlreadyBookedException(String message) {
super(message);
}
}