source: src/main/java/com/example/moviezone/model/exceptions/UserNotFoundException.java@ 04153a9

Last change on this file since 04153a9 was 6a9006d, checked in by milamihajlovska <mila.mihajlovska01@…>, 22 months ago

update userNotFoundException

  • Property mode set to 100644
File size: 189 bytes
Line 
1package com.example.moviezone.model.exceptions;
2
3
4public class UserNotFoundException extends RuntimeException{
5 public UserNotFoundException() {
6 super("user not found");
7 }
8}
Note: See TracBrowser for help on using the repository browser.