main
Last change
on this file was f4b4afa, checked in by Nikola Todoroski <nikola.todoroski@…>, 6 months ago |
Pushed whole project, original project location on github:https://github.com/hehxd/Tech-Harbor
|
-
Property mode
set to
100644
|
File size:
248 bytes
|
Line | |
---|
1 | package tech.techharbor.Model.Exceptions;
|
---|
2 |
|
---|
3 | public class ReviewNotFoundException extends RuntimeException{
|
---|
4 |
|
---|
5 | public ReviewNotFoundException(Integer reviewId) {
|
---|
6 | super(String.format("Review with id %d does not exist.", reviewId));
|
---|
7 | }
|
---|
8 |
|
---|
9 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.