source: src/main/java/tech/techharbor/Model/Exceptions/UserNotFoundException.java

main
Last change on this file was f4b4afa, checked in by Nikola Todoroski <nikola.todoroski@…>, 6 months ago

Pushed whole project, original project location on github:https://github.com/hehxd/Tech-Harbor

  • Property mode set to 100644
File size: 238 bytes
Line 
1package tech.techharbor.Model.Exceptions;
2
3public class UserNotFoundException extends RuntimeException{
4
5 public UserNotFoundException(Integer userId) {
6 super(String.format("User with id %d does not exist.", userId));
7 }
8
9}
Note: See TracBrowser for help on using the repository browser.