source: Git/src/main/java/com/wediscussmovies/project/exception/MovieIdNotFoundException.java@ 3ded84d

main
Last change on this file since 3ded84d was 3ded84d, checked in by Test <matonikolov77@…>, 2 years ago

Model-database resolved bugs for mapping

  • Property mode set to 100644
File size: 233 bytes
Line 
1package com.wediscussmovies.project.exception;
2
3public class MovieIdNotFoundException extends RuntimeException{
4 public MovieIdNotFoundException(Integer id){
5 super("Movie with that id=" + id + " does not exist!");
6 }
7}
Note: See TracBrowser for help on using the repository browser.