source:
src/main/java/com/example/fooddeliverysystem/exceptions/FoodItemNotFoundException.java
Last change on this file was 8d11f8c, checked in by , 20 months ago | |
---|---|
|
|
File size: 197 bytes |
Line | |
---|---|
1 | package com.example.fooddeliverysystem.exceptions; |
2 | |
3 | public class FoodItemNotFoundException extends Exception{ |
4 | |
5 | public FoodItemNotFoundException(String message){ |
6 | super(message); |
7 | } |
8 | } |
Note:
See TracBrowser
for help on using the repository browser.