source: src/main/java/com/example/fooddeliverysystem/exceptions/UserNotFoundException.java

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

code added, trial 2

  • Property mode set to 100644
File size: 190 bytes
RevLine 
[8d11f8c]1package com.example.fooddeliverysystem.exceptions;
2
3public class UserNotFoundException extends Exception{
4
5 public UserNotFoundException(String message){
6 super(message);
7 }
8
9}
Note: See TracBrowser for help on using the repository browser.