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

main
Last change on this file since 7fafead was 7a0bf79, checked in by Petar Partaloski <ppartaloski@…>, 2 years ago

Early implementations, MovieController CRUD implementation included

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