source: Git/src/main/java/com/wediscussmovies/project/exception/MovieIdNotFoundException.java@ 7fafead

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

Resolving models

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