source: Git/src/main/java/com/wediscussmovies/project/model/exception/ReplyNotExistException.java@ 5b447b0

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

Adding models and resources

  • Property mode set to 100644
File size: 315 bytes
Line 
1package com.wediscussmovies.project.model.exception;
2
3import com.wediscussmovies.project.model.primarykeys.ReplyPK;
4
5public class ReplyNotExistException extends RuntimeException{
6 public ReplyNotExistException(ReplyPK id){
7 super("Репликата со број " + id + " не постои!");
8 }
9}
Note: See TracBrowser for help on using the repository browser.