source: src/main/java/com/example/fooddeliverysystem/exceptions/SalePlaceNotFoundException.java@ 8d11f8c

Last change on this file since 8d11f8c was 8d11f8c, checked in by jovanmanchev <jovanmanchev3003@…>, 18 months ago

code added, trial 2

  • Property mode set to 100644
File size: 271 bytes
Line 
1package com.example.fooddeliverysystem.exceptions;
2
3
4import com.example.fooddeliverysystem.repository.SalePlaceRepository;
5
6public class SalePlaceNotFoundException extends Exception{
7
8 public SalePlaceNotFoundException(String message){
9 super(message);
10 }
11}
Note: See TracBrowser for help on using the repository browser.